Comparing the Prefix and Postfix Increment Operators : int Calculation « Data Type « C# / CSharp Tutorial






class IncrementExample
{
  public static void Main()
  {
      int x;

      x = 1;
      System.Console.WriteLine("{0}, {1}, {2}", x++, x++, x);
      System.Console.WriteLine("{0}, {1}, {2}", ++x, ++x, x);
  }
}








2.7.int Calculation
2.7.1.integers and arithmetic operators
2.7.2.int variable assignment
2.7.3.Overflowing an Integer Value
2.7.4.Bitwise AND of Integer
2.7.5.Comparing integers
2.7.6.Comparing the Prefix and Postfix Increment Operators
2.7.7.Using Binary Operators