System.Data.RecordManager.this C# (CSharp) Метод

this() приватный Метод

private this ( int record ) : DataRow
record int
Результат DataRow
        internal DataRow this[int record]
        {
            get
            {
                Debug.Assert(record >= 0 && record < _rows.Length, "Invalid record number");
                return _rows[record];
            }
            set
            {
                Debug.Assert(record >= 0 && record < _rows.Length, "Invalid record number");
                _rows[record] = value;
            }
        }