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

◆ DynamicMethod() [7/8]

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

Definition at line 274 of file DynamicMethod.cs.

275 {
276 if (owner == null)
277 {
278 throw new ArgumentNullException("owner");
279 }
280 Init(name, MethodAttributes.Public | MethodAttributes.Static, CallingConventions.Standard, returnType, parameterTypes, owner, null, skipVisibility, transparentMethod: false);
281 }
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().