Click or drag to resize

BaseProcessorMultiStringJoin Method

A helper method that joins a string array into a single string using a reserved delimiter character and nulls replaced by a token placeholder string. Reverse processing is done by MultiStringSplit(String). Currently only used by the Azure Table processor.

Namespace: Orthogonal.NSettings
Assembly: Orthogonal.NSettings (in Orthogonal.NSettings.dll) Version: 3.0.5
Syntax
C#
public static string MultiStringJoin(
	string[] values
)

Parameters

values  String
The string array to join.

Return Value

String
A single string that encodes a string array.
Exceptions
ExceptionCondition
ArgumentExceptionThrown if any string array contains the delimited character or equals the null replacement token.
See Also