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

◆ TypeCode

Enumerator
Empty 
Object 
DBNull 
Boolean 
Char 
SByte 
Byte 
Int16 
UInt16 
Int32 
UInt32 
Int64 
UInt64 
Single 
Double 
Decimal 
DateTime 
String 

Definition at line 3 of file TypeCode.cs.

4{
5 Empty = 0,
6 Object = 1,
7 DBNull = 2,
8 Boolean = 3,
9 Char = 4,
10 SByte = 5,
11 Byte = 6,
12 Int16 = 7,
13 UInt16 = 8,
14 Int32 = 9,
15 UInt32 = 10,
16 Int64 = 11,
17 UInt64 = 12,
18 Single = 13,
19 Double = 14,
20 Decimal = 15,
21 DateTime = 16,
22 String = 18
23}