Ejemplo n.º 1
0
 public override TypedArrayWrapper CreateTypedArrayWrapper(Array array, bool isNullable)
 {
     if (isNullable)
     {
         return(TypedArrayWrapper.Create <TSystemType?>(array));
     }
     return(TypedArrayWrapper.Create <TSystemType>(array));
 }
 public virtual TypedArrayWrapper CreateTypedArrayWrapper(Array array, bool isNullable)
 {
     return(TypedArrayWrapper.Create <TSystemType>(array));
 }