Table of Contents

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

list List<string>

The list of strings to join.

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

list IEnumerable<string>

The enumerable of strings to join.

Returns

string

A string with elements separated by spaces.