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

◆ DynamicMethod() [5/8]

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

Definition at line 256 of file DynamicMethod.cs.

257 {
258 if (m == null)
259 {
260 throw new ArgumentNullException("m");
261 }
262 Init(name, attributes, callingConvention, returnType, parameterTypes, null, m, skipVisibility, transparentMethod: false);
263 }
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().