VBA – Exit For

  • Post author:
  • Post category:VBA
  • Post comments:0 Comments

An Exit Fors statement is used when we want to exit the For Loop based on certain criteria. When Exit For is executed, the control jumps to the next statement immediately after the For Loop. Syntax Following is…

Continue ReadingVBA – Exit For

C# – Overview

  • Post author:
  • Post category:C#
  • Post comments:2 Comments

C# Overview is a simple, modern, general-purpose, object-oriented programming language developed by Microsoft within its .NET initiative led by Anders Hejlsberg. This topic will teach you basic C# programming and…

Continue ReadingC# – Overview

Go – for Loop

  • Post author:
  • Post category:GO
  • Post comments:2 Comments

A for loop is a repetition control structure. It allows you to write a loop that needs to execute a specific number of times. Syntax The syntax of for loop in Go programming…

Continue ReadingGo – for Loop

Go – Loops

  • Post author:
  • Post category:GO
  • Post comments:1 Comment

This topic is about Go - Loops. There may be a situation, when you need to execute a block of code several number of times. In general, statements are executed…

Continue ReadingGo – Loops