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)
37
if (
_rows
!= null)
39
Array.Copy(
_rows
, newRows, Math.Min(_lastFreeRecord,
_rows
.Length));
125
_rows
[record] = null;
152
_rows
[record] = null;
172
if (
_rows
[record] is DataRow row && row.rowID != -1)
185
Debug.Assert(record >= 0 && record <
_rows
.Length, "Invalid record number");
186
return
_rows
[record]!;
190
Debug.Assert(record >= 0 && record <
_rows
.Length, "Invalid record number");
191
_rows
[record] = value;
263
_lastFreeRecord =
_rows
.Length;
271
var r =
_rows
[record];
282
Debug.Assert((null ==
_rows
[record]) || (row ==
_rows
[record]), "record of a different row");