2 writes to rows
System.Data (2)
fx\src\data\System\Data\RecordManager.cs (2)
42
rows
= newRows;
232
rows
= newRows;
17 references to rows
System.Data (17)
fx\src\data\System\Data\RecordManager.cs (17)
39
if (
rows
!= null) {
40
Array.Copy(
rows
, 0, newRows, 0, Math.Min(lastFreeRecord,
rows
.Length));
137
rows
[record] = null;
154
if (
rows
[record]!= null &&
rows
[record].rowID != -1) {
164
Debug.Assert(record >= 0 && record <
rows
.Length, "Invalid record number");
165
return
rows
[record];
168
Debug.Assert(record >= 0 && record <
rows
.Length, "Invalid record number");
169
rows
[record] = value;
233
lastFreeRecord =
rows
.Length;
240
Debug.Assert((null ==
rows
[record]) ||
241
(record ==
rows
[record].oldRecord) ||
242
(record ==
rows
[record].newRecord) ||
243
(record ==
rows
[record].tempRecord), "record of a different row");
249
Debug.Assert((null ==
rows
[record]) || (row ==
rows
[record]), "record of a different row");