shorthand in csharp operator

Code Example - shorthand in csharp operator

                
                        Console.WriteLine("----short hand-----");
int x = 10;
x += 10;
Console.WriteLine(x);