1 write to _dictionary
Microsoft.CodeAnalysis.Workspaces (1)
src\Compilers\Core\Portable\InternalUtilities\OrderedMultiDictionary.cs (1)
34
_dictionary
= new Dictionary<K, SetWithInsertionOrder<V>>();
5 references to _dictionary
Microsoft.CodeAnalysis.Workspaces (5)
src\Compilers\Core\Portable\InternalUtilities\OrderedMultiDictionary.cs (5)
17
public int Count =>
_dictionary
.Count;
27
return
_dictionary
.TryGetValue(k, out set)
41
if (!
_dictionary
.TryGetValue(k, out set))
47
_dictionary
[k] = set;
65
key,
_dictionary
[key]);