Assignment Operators
Assignment operators: =, +=, -=, *=, /=, %=.
int num = 10;num += 5; // same as num = num + 5Console.WriteLine(num);num *= 2;Console.WriteLine(num);Run the Application
Section titled “Run the Application”dotnet runResult
Section titled “Result”1530