Click or drag to resize

DictionarySerializerTSerialize Method (IDictionaryString, T, StringComparer, Char, Char)

Serializes the specified dictionary to a string.

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

Parameters

dictionary
Type: System.Collections.GenericIDictionaryString, T
The input dictionary.
comparer (Optional)
Type: SystemStringComparer
The comparer.
separator (Optional)
Type: SystemChar
The separator.
assignment (Optional)
Type: SystemChar
The assignment.

Return Value

Type: String
A string representing the serialized dictionary.
See Also