Utils.EnumerableToString<T> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a human-readable text string that describes an IEnumerable collection of objects.
public static string EnumerableToString<T> (System.Collections.Generic.IEnumerable<T> collection, Func<T,string> toString = default, string separator = ", ", bool putInBrackets = true);
public static string EnumerableToString<T> (System.Collections.Generic.IEnumerable<T>? collection, Func<T,string>? toString = default, string separator = ", ", bool putInBrackets = true);
static member EnumerableToString : seq<'T> * Func<'T, string> * string * bool -> string
Public Function EnumerableToString(Of T) (collection As IEnumerable(Of T), Optional toString As Func(Of T, String) = Nothing, Optional separator As String = ", ", Optional putInBrackets As Boolean = true) As String
Type Parameters
- T
The type of the list elements.
Parameters
- collection
- IEnumerable<T>
The IEnumerable to describe.
Converts the element to a string. If none specified, ToString() will be used.
- separator
- String
The separator to use.
- putInBrackets
- Boolean
Puts elements within brackets
Returns
A string assembled by wrapping the string descriptions of the individual elements with square brackets and separating them with commas.