Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SurrogateHashtable.cs
Go to the documentation of this file.
2
4
5internal sealed class SurrogateHashtable : Hashtable
6{
7 internal SurrogateHashtable(int size)
8 : base(size)
9 {
10 }
11
12 protected override bool KeyEquals(object key, object item)
13 {
16 if (surrogateKey2._type == surrogateKey._type && (surrogateKey2._context.State & surrogateKey._context.State) == surrogateKey._context.State)
17 {
19 }
20 return false;
21 }
22}
override bool KeyEquals(object key, object item)
readonly StreamingContext _context