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