Click or drag to resize

DictionarySerializerTDeserialize Method (String, 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 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