Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TypeCode.cs
Go to the documentation of this file.
1namespace System;
2
3public enum TypeCode
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}
TypeCode
Definition TypeCode.cs:4