6 references to new
System.Collections (5)
System\Collections\Generic\OrderedDictionary.cs (5)
65
public OrderedDictionary() :
this
(0, null)
75
public OrderedDictionary(int capacity) :
this
(capacity, null)
87
public OrderedDictionary(IEqualityComparer<TKey>? comparer) :
this
(0, comparer)
167
this
(dictionary?.Count ?? 0, comparer)
201
this
((collection as ICollection<KeyValuePair<TKey, TValue>>)?.Count ?? 0, comparer)
System.Text.Json (1)
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
256
return
new
(capacity, comparer);