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

◆ Add< T >() [2/2]

void System.HashCode.Add< T > ( T value,
IEqualityComparer< T >? comparer )
inline

Definition at line 218 of file HashCode.cs.

219 {
220 Add((value != null) ? (comparer?.GetHashCode(value) ?? value.GetHashCode()) : 0);
221 }
override int GetHashCode()
Definition HashCode.cs:287

References System.Add, System.comparer, System.HashCode.GetHashCode(), and System.value.