Namespace CsvHelper.TypeConversion
Classes
- BigIntegerConverter
Converts a BigInteger to and from a string.
- ByteArrayConverter
Converts a Byte[] to and from a string.
- CollectionGenericConverter
Converts a Collection<T> to and from a string.
- DateTimeOffsetConverter
Converts a DateTimeOffset to and from a string.
- EnumerableConverter
Throws an exception when used. This is here so that it's apparent that there is no support for IEnumerable type conversion. A custom converter will need to be created to have a field convert to and from an IEnumerable.
- IDictionaryConverter
Converts an IDictionary to and from a string.
- IDictionaryGenericConverter
Converts an IDictionary<TKey, TValue> to and from a string.
- IEnumerableConverter
Converts an IEnumerable to and from a string.
- IEnumerableGenericConverter
Converts an IEnumerable<T> to and from a string.
- NotSupportedTypeConverter<T>
Throws an exception when used. This is here so that it's apparent that there is no support for Type type conversion. A custom converter will need to be created to have a field convert to and from Type.
- NullableConverter
Converts a Nullable<T> to and from a string.
- TypeConverterCache
Caches ITypeConverters for a given type.
- TypeConverterException
Represents errors that occur while reading a CSV file.
- TypeConverterOptions
Options used when doing type conversion.
- TypeConverterOptionsCache
Caches TypeConverterOptions for a given type.
- TypeConverter<T>
Converts values to and from strings.
- UriConverter
Converts a System.Uri to and from a string.
Interfaces
- ITypeConverter
Converts objects to and from strings.
- ITypeConverterFactory
Produces ITypeConverter for the specified Type
Enums
- ByteArrayConverterOptions
Options for converting byte arrays.