다음을 통해 공유


Matrix3x2.Item[] 속성

정의

오버로드

Item[Int32]
Item[Int32, Int32]

지정된 인덱스의 요소를 가져오거나 설정합니다.

Item[Int32]

public:
 property System::Numerics::Vector2 default[int] { System::Numerics::Vector2 get(int row); void set(int row, System::Numerics::Vector2 value); };
public System.Numerics.Vector2 this[int row] { get; set; }
member this.Item(int) : System.Numerics.Vector2 with get, set
Default Public Property Item(row As Integer) As Vector2

매개 변수

row
Int32

속성 값

적용 대상

Item[Int32, Int32]

Source:
Matrix3x2.cs
Source:
Matrix3x2.cs
Source:
Matrix3x2.cs
Source:
Matrix3x2.cs

지정된 인덱스의 요소를 가져오거나 설정합니다.

public:
 property float default[int, int] { float get(int row, int column); void set(int row, int column, float value); };
public float this[int row, int column] { get; set; }
member this.Item(int * int) : single with get, set
Default Public Property Item(row As Integer, column As Integer) As Single

매개 변수

row
Int32

가져오거나 설정할 요소가 포함된 행의 인덱스입니다.

column
Int32

가져오거나 설정할 요소가 포함된 열의 인덱스입니다.

속성 값

[row][column]의 요소입니다.

예외

row 가 0보다 작거나 행 수보다 큽니다.

또는

column 가 0보다 작거나 열 수보다 큽니다.

적용 대상