StringSetToString Method (String) |
Convert the collection to a string list of items separated by the specified delimiter.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public string ToString(
string delimiter
)
Public Function ToString (
delimiter As String
) As String
Parameters
- delimiter
- Type: SystemString
The delimiter to use between elements.
Return Value
Type:
StringThe list of items separated by the specified delimiter.
Remarks
Note that no spaces are added following the delimiter, so the delimiter needs to include
any desired spaces, for example, to get a list like "a, b, c" use a delimiter of ", ";
See Also