예제 #1
0
 public bool IsDatatypeSupported(Datatype datatype)
 {
     return SupportedTypes.Contains(datatype);
 }
예제 #2
0
 protected BaseConverter(Datatype outType, Datatype[] supportedTypes, ConvertationSafetyLevel convertationSafety)
 {
     OutType = outType;
     SupportedTypes = supportedTypes;
     ConvertationSafety = convertationSafety;
 }