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

◆ CustomAttributeSignature() [1/2]

void System.Reflection.Metadata.Ecma335.BlobEncoder.CustomAttributeSignature ( Action< FixedArgumentsEncoder > fixedArguments,
Action< CustomAttributeNamedArgumentsEncoder > namedArguments )
inline

Definition at line 61 of file BlobEncoder.cs.

62 {
63 if (fixedArguments == null)
64 {
65 Throw.ArgumentNull("fixedArguments");
66 }
67 if (namedArguments == null)
68 {
69 Throw.ArgumentNull("namedArguments");
70 }
71 CustomAttributeSignature(out var fixedArguments2, out var namedArguments2);
72 fixedArguments(fixedArguments2);
73 namedArguments(namedArguments2);
74 }
void CustomAttributeSignature(out FixedArgumentsEncoder fixedArguments, out CustomAttributeNamedArgumentsEncoder namedArguments)

References System.Reflection.Throw.ArgumentNull(), and System.Reflection.Metadata.Ecma335.BlobEncoder.CustomAttributeSignature().