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

◆ ConvertTypes

readonly Type [] System.Convert.ConvertTypes
staticpackage
Initial value:
= new Type[19]
{
typeof(Empty),
typeof(object),
typeof(DBNull),
typeof(bool),
typeof(char),
typeof(sbyte),
typeof(byte),
typeof(short),
typeof(ushort),
typeof(int),
typeof(uint),
typeof(long),
typeof(ulong),
typeof(float),
typeof(double),
typeof(decimal),
typeof(DateTime),
typeof(object),
typeof(string)
}
static readonly object DBNull
Definition Convert.cs:47

Definition at line 11 of file Convert.cs.

12 {
13 typeof(Empty),
14 typeof(object),
15 typeof(DBNull),
16 typeof(bool),
17 typeof(char),
18 typeof(sbyte),
19 typeof(byte),
20 typeof(short),
21 typeof(ushort),
22 typeof(int),
23 typeof(uint),
24 typeof(long),
25 typeof(ulong),
26 typeof(float),
27 typeof(double),
28 typeof(decimal),
29 typeof(DateTime),
30 typeof(object),
31 typeof(string)
32 };

Referenced by System.Convert.ChangeType(), and System.Convert.DefaultToType().