ListExtensions.Join<T>
Extension Method in ListExtensions
Declaration
public static string Join<T>(this List<T> list, string delimiter, int startIndex = 0, int endIndex = 2147483647)Description
Joins the items of the list into a string with a delimiter.
Type Parameters
| T | The type of the array. |
Parameters
| list | |
| delimiter | The delimiter to use. |
| startIndex | The index to start at. |
| endIndex | The index to end at. |
Returns
| string | The joined string. |