CodeBinaryOperatorExpression Class
.NET Framework 3.0
Represents an expression that consists of a binary operation between two expressions.
Namespace: System.CodeDom
Assembly: System (in system.dll)
Assembly: System (in system.dll)
[SerializableAttribute] [ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)] [ComVisibleAttribute(true)] public class CodeBinaryOperatorExpression : CodeExpression
/** @attribute SerializableAttribute() */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ /** @attribute ComVisibleAttribute(true) */ public class CodeBinaryOperatorExpression extends CodeExpression
SerializableAttribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) ComVisibleAttribute(true) public class CodeBinaryOperatorExpression extends CodeExpression
Not applicable.
CodeBinaryOperatorExpression can be used to represent code expressions that include a binary operator. Some examples of binary operators are equality (==), addition (+), and bitwise (|) operators. The CodeBinaryOperatorType enumeration represents a set of basic, commonly used binary operators that are supported in many languages.
This example demonstrates use of a CodeBinaryOperatorExpression to add two numbers together.
// This CodeBinaryOperatorExpression represents the addition of 1 and 2. CodeBinaryOperatorExpression addMethod = new CodeBinaryOperatorExpression( // Left operand. new CodePrimitiveExpression(1), // CodeBinaryOperatorType enumeration value of Add. CodeBinaryOperatorType.Add, // Right operand. new CodePrimitiveExpression(2) ); // A C# code generator produces the following source code for the preceeding example code: // (1 + 2)
// This CodeBinaryOperatorExpression represents the addition of 1 and 2.
CodeBinaryOperatorExpression addMethod = new
CodeBinaryOperatorExpression(
// Left operand.
new CodePrimitiveExpression(System.Convert.ToString(1)),
// CodeBinaryOperatorType enumeration value of Add.
CodeBinaryOperatorType.Add,
// Right operand.
new CodePrimitiveExpression(System.Convert.ToString(2)));
// A VJ# code generator produces the following source code
// for the preceeding example code:
// (1 + 2)
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeBinaryOperatorExpression
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeBinaryOperatorExpression
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: