18 references to list
System.Data (18)
fx\src\data\System\Data\DataRowCollection.cs (18)
43
return
list
.Count;
52
return
list
[index];
66
if (pos >=
list
.Count)
73
if ((pos < 0) || (pos ==
list
.Count)) {
79
if (pos <
list
.Count) {
80
if (
list
[pos] != null) {
83
list
.RemoveAt(pos);
88
while (pos>
list
.Count) {
89
list
.Add(null);
96
table.InsertRow(row, pos+1, pos >
list
.Count ? -1 : pos);
103
return
list
.IndexOf(row.RBTreeNodeId, row);
125
row.RBTreeNodeId =
list
.Add(row);
129
row.RBTreeNodeId =
list
.Insert(pos, row);
133
list
.Clear();
140
list
.RBDelete(row.RBTreeNodeId);
188
list
.CopyTo(ar, index);
192
list
.CopyTo(array, index);
196
return
list
.GetEnumerator();