'Declaration Public Overloads Shared Function ToString(Of T)( _ ByVal list As IEnumerable(Of T) _ ) As String
'Usage Dim list As IEnumerable(Of T) Dim value As String value = SSHException.ToString(Of T)(list)
public static string ToString<T>( IEnumerable<T> list )
Parameters
- list
- The list to use to create the string representation of the current exception.
Type Parameters
- T
- The type of the members of list.
Return Value
A string representation of the current exception.