Method ToSpaceSeparated
- Namespace
- YndigoBlue.Velocity.Utils
- Assembly
- YndigoBlue.Velocity.dll
ToSpaceSeparated(List<string>)
Joins a list of strings into a space-separated string.
public static string ToSpaceSeparated(this List<string> list)
Parameters
Returns
- string
A string with list elements separated by spaces.
ToSpaceSeparated(IEnumerable<string>)
Joins an enumerable of strings into a space-separated string.
public static string ToSpaceSeparated(this IEnumerable<string> list)
Parameters
listIEnumerable<string>The enumerable of strings to join.
Returns
- string
A string with elements separated by spaces.