C# Empty Statement

Prabhukiran345
Posted by Prabhukiran345 under C# category on | Points: 40 | Views : 1466
Empty statement is used when you no need to perform an operation where a statement is required. It simple transfers control to the end point of the statement. It is also very useful with while loop with blank body and label statements.

Example:
using System;

namespace empty_statement
{
class Program
{
public bool print()
{
Console.WriteLine("Prabhu Kiran");
return true;
}
static void Main(string[] args)
{
int i = 0;
Program p = new Program();
while (p.print())
{
; //Empty Statement
}
Console.WriteLine("i = {0}", i);
Console.ReadLine();
}
}
}


Output:
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran
Prabhu Kiran

Comments or Responses

Login to post response