2 writes to _rows
System.Data.Common (2)
System\Data\RecordManager.cs (2)
41_rows = newRows; 262_rows = newRows;
14 references to _rows
System.Data.Common (14)
System\Data\RecordManager.cs (14)
37if (_rows != null) 39Array.Copy(_rows, newRows, Math.Min(_lastFreeRecord, _rows.Length)); 125_rows[record] = null; 152_rows[record] = null; 172if (_rows[record] is DataRow row && row.rowID != -1) 185Debug.Assert(record >= 0 && record < _rows.Length, "Invalid record number"); 186return _rows[record]!; 190Debug.Assert(record >= 0 && record < _rows.Length, "Invalid record number"); 191_rows[record] = value; 263_lastFreeRecord = _rows.Length; 271var r = _rows[record]; 282Debug.Assert((null == _rows[record]) || (row == _rows[record]), "record of a different row");