7 references to _table
PresentationFramework (7)
MS\Internal\Data\AccessorTable.cs (7)
65
if (
_table
.TryGetValue(new AccessorTableKey(sourceValueType, type, name), out AccessorInfo info))
96
_table
[new AccessorTableKey(sourceValueType, type, name)] = value;
115
int originalCount =
_table
.Count;
119
foreach (KeyValuePair<AccessorTableKey, AccessorInfo> entry in
_table
)
124
_table
.Remove(entry.Key);
131
Console.WriteLine($"After generation {_generation}, removed {originalCount -
_table
.Count} of {originalCount} entries from AccessorTable, new count is {
_table
.Count}");