DictionarySerializerTDeserialize Method (String, StringComparer, Char, Char) |
Deserializes the specified string into a dictionary.
Namespace:
ShellBoost.Core.Utilities
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax public static IDictionary<string, T> Deserialize(
string text,
StringComparer comparer = null,
char separator = ';',
char assignment = '='
)
Parameters
- text
- Type: SystemString
The input text. - comparer (Optional)
- Type: SystemStringComparer
The comparer. - separator (Optional)
- Type: SystemChar
The separator. - assignment (Optional)
- Type: SystemChar
The assignment.
Return Value
Type:
IDictionaryString,
T
An instance of a dictionary with values deserialized from the string.
See Also