Revit.SDK.Samples.NewPathReinforcement.CS.Matrix4.this C# (CSharp) Method

this() public method

indexer of matrix
public this ( int row, int column ) : float
row int row number
column int column number
return float
        public float this[int row, int column]
        {
            get
            {
                return this.m_matrix[row, column];
            }
            set
            {
                this.m_matrix[row, column] = value;
            }
        }