CodeArrayIndexerExpression クラス
配列のインデックスへの参照を表します。
この型のすべてのメンバの一覧については、CodeArrayIndexerExpression メンバ を参照してください。
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeArrayIndexerExpression
<Serializable>
<ClassInterface(ClassInterfaceType.AutoDispatch)>
<ComVisible(True)>
Public Class CodeArrayIndexerExpression Inherits CodeExpression
[C#]
[Serializable]
[ClassInterface(ClassInterfaceType.AutoDispatch)]
[ComVisible(true)]
public class CodeArrayIndexerExpression : CodeExpression
[C++]
[Serializable]
[ClassInterface(ClassInterfaceType::AutoDispatch)]
[ComVisible(true)]
public __gc class CodeArrayIndexerExpression : public CodeExpression
[JScript]
public
Serializable
ClassInterface(ClassInterfaceType.AutoDispatch)
ComVisible(true)
class CodeArrayIndexerExpression extends CodeExpression
スレッドセーフ
この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。
解説
CodeArrayIndexerExpression を使用して、1 次元以上の配列のインデックスへの参照を表すことができます。コード (非配列) インデクサのインデックスへの参照を表すには、 CodeIndexerExpression を使用します。 TargetObject プロパティは、インデクサ オブジェクトを示します。 Indices プロパティは、対象となる配列内の単一のインデックス、または組み合わせることによって配列の各次元の特定の共通部分を指定するインデックスの集合を示します。
使用例
[Visual Basic, C#, C++] x という名前の整数配列のインデックス 5 を参照する CodeArrayIndexerExpression を作成するコードを次に示します。
' Create an array indexer expression that references index 5 of array "x"
Dim ci1 As New CodeArrayIndexerExpression(New CodeVariableReferenceExpression("x"), New CodePrimitiveExpression(5))
' A Visual Basic code generator produces the following source code for the preceeding example code:
' x[5]
[C#]
// Create an array indexer expression that references index 5 of array "x"
CodeArrayIndexerExpression ci1 = new CodeArrayIndexerExpression(new CodeVariableReferenceExpression("x"), new CodePrimitiveExpression(5));
// A C# code generator produces the following source code for the preceeding example code:
// x[5]
[C++]
// Create an array indexer expression that references index 5 of array "x"
CodeExpression* temp[] = {new CodePrimitiveExpression(__box(5)) };
CodeArrayIndexerExpression* ci1 = new CodeArrayIndexerExpression(
new CodeVariableReferenceExpression(S"x"), temp);
// A C# code generator produces the following source code for the preceeding example code:
// x[5]
[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 内)