共用方式為


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]

來源:
Matrix3x2.cs
來源:
Matrix3x2.cs
來源:
Matrix3x2.cs
來源:
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 小於零或大於數據列數目。

-或-

column 小於零或大於數據行數目。

適用於