UInt32Converter Constructor
Namespace: FolkerKinzel.CsvTools.Mappings.TypeConvertersAssembly: FolkerKinzel.CsvTools.Mappings (in FolkerKinzel.CsvTools.Mappings.dll) Version: 1.1.0+1263e8243dc2cd78095f678f813d7d9c52ea4315
public UInt32Converter(
IFormatProvider? formatProvider = null,
string? format = "G",
NumberStyles styles = NumberStyles.Any,
bool throwing = true,
uint defaultValue = 0
)
Public Sub New (
Optional formatProvider As IFormatProvider = Nothing,
Optional format As String = "G",
Optional styles As NumberStyles = NumberStyles.Any,
Optional throwing As Boolean = true,
Optional defaultValue As UInteger = 0
)
public:
UInt32Converter(
IFormatProvider^ formatProvider = nullptr,
String^ format = L"G",
NumberStyles styles = NumberStyles::Any,
bool throwing = true,
unsigned int defaultValue = 0
)
new :
?formatProvider : IFormatProvider *
?format : string *
?styles : NumberStyles *
?throwing : bool *
?defaultValue : uint32
(* Defaults:
let _formatProvider = defaultArg formatProvider null
let _format = defaultArg format "G"
let _styles = defaultArg styles NumberStyles.Any
let _throwing = defaultArg throwing true
let _defaultValue = defaultArg defaultValue 0
*)
-> UInt32Converter
Parameters
- formatProvider IFormatProvider (Optional)
-
An IFormatProvider instance that provides culture-specific
formatting information, or null for InvariantCulture.
- format String (Optional)
-
A format string that is used for the String output of UInt32
values. The format strings "R" and "r" are not supported.
- styles NumberStyles (Optional)
-
A combined value of the NumberStyles enum that provides additional
information for parsing.
- throwing Boolean (Optional)
- Sets the value of the
Throwing property.
- defaultValue UInt32 (Optional)
- Sets the value of the DefaultValue
property.