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

◆ TaggedScalar() [1/2]

void System.Reflection.Metadata.Ecma335.LiteralEncoder.TaggedScalar ( Action< CustomAttributeElementTypeEncoder > type,
Action< ScalarEncoder > scalar )
inline

Definition at line 49 of file LiteralEncoder.cs.

50 {
51 if (type == null)
52 {
53 Throw.ArgumentNull("type");
54 }
55 if (scalar == null)
56 {
57 Throw.ArgumentNull("scalar");
58 }
59 TaggedScalar(out var type2, out var scalar2);
60 type(type2);
61 scalar(scalar2);
62 }
void TaggedScalar(out CustomAttributeElementTypeEncoder type, out ScalarEncoder scalar)

References System.Reflection.Throw.ArgumentNull(), System.Reflection.Metadata.Ecma335.LiteralEncoder.TaggedScalar(), and System.type.