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

◆ StringFormat

MethodInfo System.Runtime.Serialization.CodeGenerator.StringFormat
staticgetprivate

Definition at line 103 of file CodeGenerator.cs.

104 {
105 get
106 {
107 if (s_stringFormat == null)
108 {
109 s_stringFormat = typeof(string).GetMethod("Format", new Type[2]
110 {
111 typeof(string),
112 typeof(object[])
113 });
114 }
115 return s_stringFormat;
116 }
117 }

Referenced by System.Runtime.Serialization.CodeGenerator.CallStringFormat().