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

◆ DynamicMethod() [6/8]

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

Definition at line 265 of file DynamicMethod.cs.

266 {
267 if (owner == null)
268 {
269 throw new ArgumentNullException("owner");
270 }
271 Init(name, MethodAttributes.Public | MethodAttributes.Static, CallingConventions.Standard, returnType, parameterTypes, owner, null, skipVisibility: false, transparentMethod: false);
272 }
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().