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

◆ DynamicMethod() [3/8]

System.Reflection.Emit.DynamicMethod.DynamicMethod ( string name,
Type? returnType,
Type?[] parameterTypes,
Module m )
inline

Definition at line 238 of file DynamicMethod.cs.

239 {
240 if (m == null)
241 {
242 throw new ArgumentNullException("m");
243 }
244 Init(name, MethodAttributes.Public | MethodAttributes.Static, CallingConventions.Standard, returnType, parameterTypes, null, m, skipVisibility: false, transparentMethod: false);
245 }
void Init(string name, MethodAttributes attributes, CallingConventions callingConvention, Type returnType, Type[] signature, Type owner, Module m, bool skipVisibility, bool transparentMethod)

References System.Reflection.Emit.DynamicMethod.Init().