4 implementations of IUInt16Converter
Microsoft.Data.Analysis (4)
Converters.cs (4)
177internal class ByteUInt16Converter : IUInt16Converter<byte> 184internal class SByteUInt16Converter : IUInt16Converter<sbyte> 191internal class Int16UInt16Converter : IUInt16Converter<short> 198internal class UInt16UInt16Converter : IUInt16Converter<ushort>
6 references to IUInt16Converter
Microsoft.Data.Analysis (6)
Converters.cs (6)
152public static IUInt16Converter<T> Instance { get; } = UInt16Converter.GetUInt16Converter<T>(); 156public static IUInt16Converter<T> GetUInt16Converter<T>() 160return (IUInt16Converter<T>)new ByteUInt16Converter(); 164return (IUInt16Converter<T>)new SByteUInt16Converter(); 168return (IUInt16Converter<T>)new Int16UInt16Converter(); 172return (IUInt16Converter<T>)new UInt16UInt16Converter();