다음을 통해 공유


CodeArrayIndexerExpression 클래스

정의

배열의 인덱스에 대한 참조를 나타냅니다.

public ref class CodeArrayIndexerExpression : System::CodeDom::CodeExpression
public class CodeArrayIndexerExpression : System.CodeDom.CodeExpression
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeArrayIndexerExpression : System.CodeDom.CodeExpression
type CodeArrayIndexerExpression = class
    inherit CodeExpression
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeArrayIndexerExpression = class
    inherit CodeExpression
Public Class CodeArrayIndexerExpression
Inherits CodeExpression
상속
CodeArrayIndexerExpression
특성

예제

다음 코드는 라는 x 정수 배열의 인덱스 5를 참조하는 을 만듭니다CodeArrayIndexerExpression.


// Create an array indexer expression that references index 5 of array "x"
array<CodeExpression^>^temp = {gcnew CodePrimitiveExpression( 5 )};
CodeArrayIndexerExpression^ ci1 = gcnew CodeArrayIndexerExpression( gcnew CodeVariableReferenceExpression( "x" ),temp );

// A C# code generator produces the following source code for the preceeding example code:
// x[5]
// 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]
' 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]

설명

CodeArrayIndexerExpression 는 하나 이상의 차원 배열의 인덱스에 대한 참조를 나타내는 데 사용할 수 있습니다. 코드(배열이 아닌) 인덱서의 인덱스 참조를 나타내는 데 사용합니다 CodeIndexerExpression . 속성은 TargetObject 인덱서 개체를 나타냅니다. 속성은 Indices 대상 배열 내의 단일 인덱스 또는 배열의 차원에 걸쳐 인덱스의 특정 교집합을 함께 지정하는 인덱스 집합을 나타냅니다.

생성자

CodeArrayIndexerExpression()

CodeArrayIndexerExpression 클래스의 새 인스턴스를 초기화합니다.

CodeArrayIndexerExpression(CodeExpression, CodeExpression[])

지정된 대상 개체와 인덱스를 사용하여 CodeArrayIndexerExpression 클래스의 새 인스턴스를 초기화합니다.

속성

Indices

인덱서 식의 인덱스를 가져오거나 설정합니다.

TargetObject

배열 인덱서의 대상 개체를 가져오거나 설정합니다.

UserData

현재 개체에 대해 사용자 정의 가능한 데이터를 가져옵니다.

(다음에서 상속됨 CodeObject)

메서드

Equals(Object)

지정된 개체가 현재 개체와 같은지 확인합니다.

(다음에서 상속됨 Object)
GetHashCode()

기본 해시 함수로 작동합니다.

(다음에서 상속됨 Object)
GetType()

현재 인스턴스의 Type을 가져옵니다.

(다음에서 상속됨 Object)
MemberwiseClone()

현재 Object의 단순 복사본을 만듭니다.

(다음에서 상속됨 Object)
ToString()

현재 개체를 나타내는 문자열을 반환합니다.

(다음에서 상속됨 Object)

적용 대상