Example #1
0
 public GeneralArrayTypeSignature(TypeSignature innerType, ArrayShape shape)
     : base(ElementType.Array)
 {
     InnerType = innerType;
     Shape = shape;
 }
Example #2
0
 public SZArrayTypeSignature(TypeSignature innerType)
     : base(ElementType.Szarray)
 {
     InnerType = innerType;
 }