CodeBinaryOperatorExpression.Operator Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the operator in the binary operator expression.
public:
property System::CodeDom::CodeBinaryOperatorType Operator { System::CodeDom::CodeBinaryOperatorType get(); void set(System::CodeDom::CodeBinaryOperatorType value); };
public System.CodeDom.CodeBinaryOperatorType Operator { get; set; }
member this.Operator : System.CodeDom.CodeBinaryOperatorType with get, set
Public Property Operator As CodeBinaryOperatorType
Property Value
A CodeBinaryOperatorType that indicates the type of operator in the expression.
Remarks
A binary operator performs an evaluation on two operands. Some examples of binary operators are equality (==
), addition (+
), and bitwise (|
) operators. Many commonly used binary operators can be found in the CodeBinaryOperatorType enumeration.