AgaHackTools.Example.Shared.Math.Matrix.this C# (CSharp) Method

this() public method

public this ( int i ) : float
i int
return float
        public float this[int i]
        {
            get { return data[i]; }
            set { data[i] = value; }
        }

Same methods

Matrix::this ( int row, int column ) : float