Operator C# Tutorial

class MainClass
{
  public static void Main()
  {
    int length = 3;
    int newLength = length++;
    System.Console.WriteLine("Postfix increment example");
    System.Console.WriteLine("length = " + length);
    System.Console.WriteLine("newLength = " + newLength);
  }
}
Postfix increment example
length = 4
newLength = 3