Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SurrogateKey.cs
Go to the documentation of this file.
2
3internal sealed class SurrogateKey
4{
5 internal readonly Type _type;
6
7 internal readonly StreamingContext _context;
8
10 {
11 _type = type;
12 _context = context;
13 }
14
15 public override int GetHashCode()
16 {
17 return _type.GetHashCode();
18 }
19}
SurrogateKey(Type type, StreamingContext context)
readonly StreamingContext _context
override int GetHashCode()
Definition Type.cs:1122