Mega Code Archive

 
Categories / C# Tutorial / Operator
 

Prefix decrement

class MainClass {   public static void Main()   {          int length = 3;     int newLength = --length;     System.Console.WriteLine("Prefix decrement example");     System.Console.WriteLine("length = " + length);     System.Console.WriteLine("newLength = " + newLength);   } } Prefix decrement example length = 2 newLength = 2