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
.
- Namespace
- CsvHelper
.TypeConversion - Interfaces
- Base Types
-
- object
- TypeConverter
<T>
graph BT
Type-->Base0["TypeConverter<T>"]
Base0-->Base1["object"]
Type-.->Interface0["ITypeConverter"]
click Interface0 "/CsvHelper/api/CsvHelper.TypeConversion/ITypeConverter"
Type["NotSupportedTypeConverter<T>"]
class Type type-node
Syntax
public class NotSupportedTypeConverter<T> : TypeConverter<T>, ITypeConverter
Type Parameters
Name | Description |
---|---|
T |
Methods
Name | Return Value | Summary |
---|---|---|
ConvertFromString |
T |
Throws an exception.
|
ConvertToString |
string |
Throws an exception.
|