Mega Code Archive

 
Categories / C# Tutorial / Operator
 

Postfix increment

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