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