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