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