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

◆ TaggedVector() [1/2]

void System.Reflection.Metadata.Ecma335.LiteralEncoder.TaggedVector ( Action< CustomAttributeArrayTypeEncoder > arrayType,
Action< VectorEncoder > vector )
inline

Definition at line 23 of file LiteralEncoder.cs.

24 {
25 if (arrayType == null)
26 {
27 Throw.ArgumentNull("arrayType");
28 }
29 if (vector == null)
30 {
31 Throw.ArgumentNull("vector");
32 }
33 TaggedVector(out var arrayType2, out var vector2);
34 arrayType(arrayType2);
35 vector(vector2);
36 }
void TaggedVector(out CustomAttributeArrayTypeEncoder arrayType, out VectorEncoder vector)

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