2 writes to findIndexes
System.Data (2)
fx\src\data\System\Data\DataView.cs (2)
960findIndexes = new Dictionary<string,Index>(); 1563findIndexes = null;
8 references to findIndexes
System.Data (8)
fx\src\data\System\Data\DataView.cs (8)
959if (findIndexes == null) { 963if (findIndexes.TryGetValue(column, out findIndex)) { 965findIndexes.Remove(column); 975findIndexes[column] = findIndex; 1090if ((null == findIndexes) || !findIndexes.TryGetValue(property.Name, out findIndex)) { 1561if (null != findIndexes) { 1562Dictionary<string,Index> indexes = findIndexes;