コード例 #1
0
ファイル: ArrayTypeBase.cs プロジェクト: re-motion/TypePipe
 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
ファイル: VectorType.cs プロジェクト: re-motion/TypePipe
 public VectorType(CustomType elementType)
     : base(elementType, 1)
 {
 }