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

◆ DynamicMethod() [8/8]

System.Reflection.Emit.DynamicMethod.DynamicMethod ( string name,
MethodAttributes attributes,
CallingConventions callingConvention,
Type? returnType,
Type?[] parameterTypes,
Type owner,
bool skipVisibility )
inline

Definition at line 283 of file DynamicMethod.cs.

284 {
285 if (owner == null)
286 {
287 throw new ArgumentNullException("owner");
288 }
289 Init(name, attributes, callingConvention, returnType, parameterTypes, owner, null, skipVisibility, transparentMethod: false);
290 }
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().