Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlILConstructors.cs
Go to the documentation of this file.
4
6
7internal static class XmlILConstructors
8{
9 public static readonly ConstructorInfo DecFromParts = typeof(decimal).GetConstructor(new Type[5]
10 {
11 typeof(int),
12 typeof(int),
13 typeof(int),
14 typeof(bool),
15 typeof(byte)
16 });
17
18 public static readonly ConstructorInfo DecFromInt32 = typeof(decimal).GetConstructor(new Type[1] { typeof(int) });
19
20 public static readonly ConstructorInfo DecFromInt64 = typeof(decimal).GetConstructor(new Type[1] { typeof(long) });
21
23
25
26 public static readonly ConstructorInfo QName = typeof(XmlQualifiedName).GetConstructor(new Type[2]
27 {
28 typeof(string),
29 typeof(string)
30 });
31
33
35}
static readonly Type[] EmptyTypes
Definition Type.cs:19
static readonly ConstructorInfo DecFromInt32
static readonly ConstructorInfo Transparent
static readonly ConstructorInfo DecFromInt64
static readonly ConstructorInfo StepThrough
static readonly ConstructorInfo NonUserCode
static readonly ConstructorInfo Debuggable
static readonly ConstructorInfo DecFromParts
static readonly ConstructorInfo QName