Stringify
Combines the elements of an enumerable object into a string.
- Use
string.Join()
to combine all elements in theIEnumerable
into astring
, usingdelimiter
. - Omit the second argument,
delimiter
, to use the default delimiter of","
.
Combines the elements of an enumerable object into a string.
string.Join()
to combine all elements in the IEnumerable
into a string
, using delimiter
.delimiter
, to use the default delimiter of ","
.