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

◆ GetStringConstant() [2/2]

int System.Reflection.Emit.ModuleBuilder.GetStringConstant ( string str)
inlinepackage

Definition at line 1124 of file ModuleBuilder.cs.

1125 {
1126 if (str == null)
1127 {
1128 throw new ArgumentNullException("str");
1129 }
1130 ModuleBuilder module = this;
1131 return GetStringConstant(new QCallModule(ref module), str, str.Length);
1132 }
static int GetStringConstant(QCallModule module, string str, int length)
ModuleBuilder(AssemblyBuilder assemblyBuilder, InternalModuleBuilder internalModuleBuilder)

References System.Reflection.Emit.ModuleBuilder.GetStringConstant(), and System.str.