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

◆ ToImmutableSortedDictionary< TKey, TValue >() [2/4]

static ImmutableSortedDictionary< TKey, TValue > System.Collections.Immutable.ImmutableSortedDictionary< TKey, TValue >.ToImmutableSortedDictionary< TKey, TValue > ( this IEnumerable< KeyValuePair< TKey, TValue > > source,
IComparer< TKey >? keyComparer )
inlinestatic
Type Constraints
TKey :notnull 

Definition at line 93 of file ImmutableSortedDictionary.cs.

93 : notnull
94 {
95 return source.ToImmutableSortedDictionary(keyComparer, null);
96 }

References System.source.