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