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

◆ PrimitiveTypeCode

Enumerator
Boolean 
Byte 
SByte 
Char 
Int16 
UInt16 
Int32 
UInt32 
Int64 
UInt64 
Single 
Double 
IntPtr 
UIntPtr 
Object 
String 
TypedReference 
Void 

Definition at line 3 of file PrimitiveTypeCode.cs.

4{
5 Boolean = 2,
6 Byte = 5,
7 SByte = 4,
8 Char = 3,
9 Int16 = 6,
10 UInt16 = 7,
11 Int32 = 8,
12 UInt32 = 9,
13 Int64 = 10,
14 UInt64 = 11,
15 Single = 12,
16 Double = 13,
17 IntPtr = 24,
18 UIntPtr = 25,
19 Object = 28,
20 String = 14,
21 TypedReference = 22,
22 Void = 1
23}