C# Assignment Operators
These operators are used in a program to assign a value of the right-hand side to the left-hand side as shown below. You can combine write in short version such as instead of writing, int a = a+5, you can write it as a += 5. Following are the list of assignment operators used in C#. Operator … Read more