Accord.Controls.ArrayDataView.this C# (CSharp) Method

this() public method

Gets a row from this view.
public this ( int index ) : object
index int
return object
        public object this[int index]
        {
            get { return rows[index]; }
            set { throw new NotSupportedException(); }
        }