예제 #1
0
 protected abstract IEnumerable <Type> CreateInterfaces(CustomType elementType);
예제 #2
0
 public MultiDimensionalArrayType(CustomType elementType, int rank)
     : base(elementType, rank)
 {
 }
예제 #3
0
 protected override IEnumerable <Type> CreateInterfaces(CustomType elementType)
 {
     return(typeof(Array).GetInterfaces());
 }
예제 #4
0
 public VectorType(CustomType elementType)
     : base(elementType, 1)
 {
 }