Assignment operator '='

suggest change

The assignment operator = sets thr left hand operand’s value to the value of right hand operand, and return that value:

int a = 3;     // assigns value 3 to variable a
int b = a = 5; // first assigns value 5 to variable a, then does the same for variable b
Console.WriteLine(a = 3 + 4); // prints 7

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents