3fcfdeb5 6039 10ff d58e 97f1a6642a6e - akesseler/Plexdata.CsvParser GitHub Wiki
This internal class provides a set of type conversion methods.
System.Object
Plexdata.CsvParser.Internals.TypeConverter
Namespace: Plexdata.CsvParser.Internals
Assembly: Plexdata.CsvParser.NET (in Plexdata.CsvParser.NET.dll) Version: 1.1.3+d5bef99aa35461ce4bafadf0bf2c2aeca18044ea
C#
internal static class TypeConverter
The TypeConverter type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() |
AsBoolean | This method converts given value into an object representing a Boolean type. |
![]() ![]() |
AsCharacter | This method converts given value into an object representing a Character type. |
![]() ![]() |
AsDateTime | This method converts given value into an object representing a Date/Time type. |
![]() ![]() |
AsDecimal | This method converts given value into an object representing a Decimal type. |
![]() ![]() |
AsDouble | This method converts given value into an object representing a Double type. |
![]() ![]() |
AsSingle | This method converts given value into an object representing a Single type. |
![]() ![]() |
AsSInt16 | This method converts given value into an object representing a Signed Short type. |
![]() ![]() |
AsSInt32 | This method converts given value into an object representing a Signed Integer type. |
![]() ![]() |
AsSInt64 | This method converts given value into an object representing a Signed Long type. |
![]() ![]() |
AsSInt8 | This method converts given value into an object representing a Signed Byte type. |
![]() ![]() |
AsString | This method converts given value into an object representing a String type. |
![]() ![]() |
AsUInt16 | This method converts given value into an object representing a Unsigned Short type. |
![]() ![]() |
AsUInt32 | This method converts given value into an object representing a Unsigned Integer type. |
![]() ![]() |
AsUInt64 | This method converts given value into an object representing a Unsigned Long type. |
![]() ![]() |
AsUInt8 | This method converts given value into an object representing a Unsigned Byte type. |
![]() ![]() |
GetFalseMapping | This method tries to get the 'False' value mapping from given mapping instance. |
![]() ![]() |
GetFalseMappings | This method tries to get the list of 'False' value mappings from given mapping instance. |
![]() ![]() |
GetNullMapping | This method tries to get the 'Null' value mapping from given mapping instance. |
![]() ![]() |
GetNullMappings | This method tries to get the list of 'Null' value mappings from given mapping instance. |
![]() ![]() |
GetTrueMapping | This method tries to get the 'True' value mapping from given mapping instance. |
![]() ![]() |
GetTrueMappings | This method tries to get the list of 'True' value mappings from given mapping instance. |
![]() ![]() |
IntoObject | This method converts given value into its type-safe object representation. |
![]() ![]() |
IntoString | The method tries to convert given 'value' into its string representation. |
![]() ![]() |
IsFalseString | This method check if given value is included in the list of 'False' values available within given CSV mappings. |
![]() ![]() |
IsNullable | This method determines whether given type is of type Nullable. |
![]() ![]() |
IsNullString | This method check if given value is included in the list of 'Null' values available within given CSV mappings. |
![]() ![]() |
IsTrueString | This method check if given value is included in the list of 'True' values available within given CSV mappings. |
![]() ![]() |
ToString | This method converts given Boolean value into its string representation. |
Type conversion is used only internally. User should not use this class directly.