Namespace: Innovator.ClientAssembly: Innovator.Client (in Innovator.Client.dll) Version: 2016.1.15.1759 (2016.01.15.1759)
Syntax public static string GroupConcat<T>(
this IEnumerable<T> values,
string separator,
Func<T, string> renderer = null
)
<ExtensionAttribute>
Public Shared Function GroupConcat(Of T) (
values As IEnumerable(Of T),
separator As String,
Optional renderer As Func(Of T, String) = Nothing
) As String
Parameters
- values
- Type: System.Collections.GenericIEnumerableT
- separator
- Type: SystemString
- renderer (Optional)
- Type: SystemFuncT, String
Type Parameters
- T
Return Value
Type:
StringUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also