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

◆ Kind

HandleKind System.Reflection.Metadata.Handle.Kind
get

Definition at line 33 of file Handle.cs.

34 {
35 get
36 {
37 uint type = Type;
38 if ((type & 0xFFFFFFFCu) == 120)
39 {
40 return HandleKind.String;
41 }
42 return (HandleKind)type;
43 }
44 }