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

◆ GetMemberRefSignature() [1/2]

SignatureHelper System.Reflection.Emit.ModuleBuilder.GetMemberRefSignature ( CallingConventions call,
Type returnType,
Type[] parameterTypes,
Type requiredCustomModifiers[][],
Type optionalCustomModifiers[][],
Type[] optionalParameterTypes,
int cGenericParameters )
inlinepackage

Definition at line 319 of file ModuleBuilder.cs.

320 {
321 SignatureHelper methodSigHelper = SignatureHelper.GetMethodSigHelper(this, call, cGenericParameters, returnType, null, null, parameterTypes, requiredCustomModifiers, optionalCustomModifiers);
322 if (optionalParameterTypes != null && optionalParameterTypes.Length != 0)
323 {
324 methodSigHelper.AddSentinel();
325 methodSigHelper.AddArguments(optionalParameterTypes, null, null);
326 }
327 return methodSigHelper;
328 }

References System.Reflection.Emit.SignatureHelper.GetMethodSigHelper().

Referenced by System.Reflection.Emit.ModuleBuilder.GetMemberRefToken().