Concatenates a string array into a single string, using the token parameter as a separator.
Namespace: Facilita.UtilAssembly: fc_clr (in fc_clr.dll) Version: 9.5.7.98
Syntax
Parameters
- p
- Type: System String
The array of strings to concatenate.
- token
- Type: System String
The delimiter to place between the strings.
Return Value
The concatenated string.Examples
string value = StringUtils.ConcatString(new string[] { "item1", "item2", "item3" }, ", "); WriteMessage(value);
See Also