Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SortedDictionary() [4/4]

System.Collections.Generic.SortedDictionary< TKey, TValue >.SortedDictionary ( IComparer< TKey >? comparer)
inline

Definition at line 625 of file SortedDictionary.cs.

626 {
627 _set = new TreeSet<KeyValuePair<TKey, TValue>>(new KeyValuePairComparer(comparer));
628 }
readonly TreeSet< KeyValuePair< TKey, TValue > > _set

References System.Collections.Generic.SortedDictionary< TKey, TValue >._set, and System.comparer.