6.1 Introduction
An assignment operation sets the value of a variable, constant, or other item in the code behind of a Page class. The assignment statement is so fundamental to computer programming that every procedural/imperative programming language requires such a statement—regardless of its syntax. The general syntax of an assignment statement in the C# programming language is
Operand1 Operator Operand2;
where Operand1 is a variable, constant, or other item, Operator is an equal sign (=) or other assignment operator, and Operand2 is the value (or the result of an ...