CodeBinaryOperatorExpression クラス
2 つの式の間の二項演算から構成される式を表します。
この型のすべてのメンバの一覧については、CodeBinaryOperatorExpression メンバ を参照してください。
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeBinaryOperatorExpression
<Serializable>
<ClassInterface(ClassInterfaceType.AutoDispatch)>
<ComVisible(True)>
Public Class CodeBinaryOperatorExpression Inherits CodeExpression
[C#]
[Serializable]
[ClassInterface(ClassInterfaceType.AutoDispatch)]
[ComVisible(true)]
public class CodeBinaryOperatorExpression : CodeExpression
[C++]
[Serializable]
[ClassInterface(ClassInterfaceType::AutoDispatch)]
[ComVisible(true)]
public __gc class CodeBinaryOperatorExpression : public CodeExpression
[JScript]
public
Serializable
ClassInterface(ClassInterfaceType.AutoDispatch)
ComVisible(true)
class CodeBinaryOperatorExpression extends CodeExpression
スレッドセーフ
この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。
解説
CodeBinaryOperatorExpression を使用して、二項演算子を含んだコード式を表すことができます。二項演算子には、等値演算子 (==)、加算演算子 (+)、ビット処理演算子 (|) などがあります。 CodeBinaryOperatorType 列挙体は、多くの言語がサポートする、基本的で一般に使用される二項演算子を表します。
使用例
[Visual Basic, C#, C++] CodeBinaryOperatorExpression を使用して 2 つの数値を加算する例を次に示します。
' This CodeBinaryOperatorExpression represents the addition of 1 and 2.
Dim addMethod As New CodeBinaryOperatorExpression( _
New CodePrimitiveExpression(1), _
CodeBinaryOperatorType.Add, _
New CodePrimitiveExpression(2) )
' A Visual Basic code generator produces the following source code for the preceeding example code:
' (1 + 2)
[C#]
// 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)
[C++]
// This CodeBinaryOperatorExpression represents the addition of 1 and 2.
CodeBinaryOperatorExpression* addMethod = new CodeBinaryOperatorExpression(
// Left operand.
new CodePrimitiveExpression(__box(1)),
// CodeBinaryOperatorType enumeration value of Add.
CodeBinaryOperatorType::Add,
// Right operand.
new CodePrimitiveExpression(__box(2)) );
// A C# code generator produces the following source code for the preceeding example code:
// (1 + 2)
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
名前空間: System.CodeDom
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
アセンブリ: System (System.dll 内)
参照
CodeBinaryOperatorExpression メンバ | System.CodeDom 名前空間 | CodeExpression | CodeBinaryOperatorType