Click or drag to resize

DictionarySerializerTDeserialize Method (String, IDictionaryString, T, StringComparer, Char, Char)

Deserializes the specified string into a dictionary.

Namespace:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public static void Deserialize(
	string text,
	IDictionary<string, T> dictionary,
	StringComparer comparer = null,
	char separator = ';',
	char assignment = '='
)

Parameters

text
Type: SystemString
The input text.
dictionary
Type: System.Collections.GenericIDictionaryString, T
The output dictionary.
comparer (Optional)
Type: SystemStringComparer
The comparer.
separator (Optional)
Type: SystemChar
The separator.
assignment (Optional)
Type: SystemChar
The assignment.
Exceptions
ExceptionCondition
ArgumentNullExceptiondictionary is null.
See Also