Matrix3x2.Item[] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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
]의 요소입니다.