public KeyValuePairConverter(
LocalizedStringProvider stringProvider,
string argumentName,
bool allowNullValues,
Type? keyConverterType,
Type? valueConverterType,
string? separator
)
Public Sub New (
stringProvider As LocalizedStringProvider,
argumentName As String,
allowNullValues As Boolean,
keyConverterType As Type,
valueConverterType As Type,
separator As String
)
Dim stringProvider As LocalizedStringProvider
Dim argumentName As String
Dim allowNullValues As Boolean
Dim keyConverterType As Type
Dim valueConverterType As Type
Dim separator As String
Dim instance As New KeyValuePairConverter(stringProvider,
argumentName, allowNullValues, keyConverterType,
valueConverterType, separator)
public:
KeyValuePairConverter(
LocalizedStringProvider^ stringProvider,
String^ argumentName,
bool allowNullValues,
Type^ keyConverterType,
Type^ valueConverterType,
String^ separator
)
If either keyConverterType or valueConverterType is , conversion of those types is done using the rules outlined in the documentation for the ConvertToArgumentType(CultureInfo, String) method.
ArgumentNullException | stringProvider or argumentName is . |
ArgumentException | separator is an empty string. |
NotSupportedException | Either the key or value TypeConverter does not support converting from a string. |