Example #1
0
 /// <summary>
 /// Encodes the type and the items of a vector literal.
 /// Returns a pair of encoders that must be used in the order they appear in the parameter list.
 /// </summary>
 /// <param name="arrayType">Use first, to encode the type of the vector.</param>
 /// <param name="vector">Use second, to encode the items of the vector.</param>
 public void TaggedVector(out CustomAttributeArrayTypeEncoder arrayType, out VectorEncoder vector)
 {
     arrayType = new CustomAttributeArrayTypeEncoder(Builder);
     vector    = new VectorEncoder(Builder);
 }
Example #2
0
 public void TaggedVector(out CustomAttributeArrayTypeEncoder arrayType, out VectorEncoder vector)
 {
     arrayType = new CustomAttributeArrayTypeEncoder(Builder);
     vector = new VectorEncoder(Builder);
 }