 | 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.NSettingsAssembly: Orthogonal.NSettings (in Orthogonal.NSettings.dll) Version: 3.0.5
Syntaxpublic static string MultiStringJoin(
string[] values
)
Parameters
- values String
- The string array to join.
Return Value
StringA single string that encodes a string array.
ExceptionsException | Condition |
---|
ArgumentException | Thrown if any string array contains the delimited character
or equals the null replacement token. |
See Also