C# unary operator

46

C# unary operator -

int a = 10;
a++;
 
Console.WriteLine(a);
// Prints: 11

Comments

Submit
0 Comments