2 implementations of IByteConverter
Microsoft.Data.Analysis (2)
Converters.cs (2)
36internal class ByteByteConverter : IByteConverter<byte> 43internal class SByteByteConverter : IByteConverter<sbyte>
4 references to IByteConverter
Microsoft.Data.Analysis (4)
Converters.cs (4)
19public static IByteConverter<T> Instance { get; } = ByteConverter.GetByteConverter<T>(); 23public static IByteConverter<T> GetByteConverter<T>() 27return (IByteConverter<T>)new ByteByteConverter(); 31return (IByteConverter<T>)new SByteByteConverter();