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