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

◆ Hashtable() [14/17]

System.Collections.Hashtable.Hashtable ( int capacity,
float loadFactor,
IHashCodeProvider? hcp,
IComparer? comparer )
inline

Definition at line 626 of file Hashtable.cs.

627 : this(capacity, loadFactor)
628 {
629 if (hcp != null || comparer != null)
630 {
631 _keycomparer = new CompatibleComparer(hcp, comparer);
632 }
633 }
IHashCodeProvider? hcp
Definition Hashtable.cs:417
IEqualityComparer _keycomparer
Definition Hashtable.cs:413

References System.Collections.Hashtable._keycomparer, System.Collections.Hashtable.comparer, and System.Collections.Hashtable.hcp.