6 references to _table
Microsoft.CodeAnalysis.Workspaces (6)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\EnumerableConditionalWeakTable.cs (6)
24
public object WriteLock =>
_table
;
27
=>
_table
.TryGetValue(key, out value);
30
=>
_table
.Add(key, value);
33
=>
_table
.AddOrUpdate(key, value);
36
=>
_table
.Remove(key);
39
=> ((IEnumerable<KeyValuePair<TKey, TValue>>)
_table
).GetEnumerator();