IEnumerableExtensionsStringJoinT Method
Joins multiple IEnumerableT at once into a single string.
Namespace: DevCase.Extensions.IEnumerableExtensionsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static string StringJoin<T>(
this IEnumerable<T>[] sender,
string separator
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function StringJoin(Of T) (
sender As IEnumerable(Of T)(),
separator As String
) As String
Dim sender As IEnumerable(Of T)()
Dim separator As String
Dim returnValue As String
returnValue = sender.StringJoin(separator)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
generic<typename T>
static String^ StringJoin(
array<IEnumerable<T>^>^ sender,
String^ separator
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member StringJoin :
sender : IEnumerable<'T>[] *
separator : string -> string
No code example is currently available or this language may not be supported.
- sender IEnumerableT
-
The source collections.
- separator String
-
The string to use as a separator.
- T
-
The type.
StringString.
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).
This is a code example.
No code example is currently available or this language may not be supported.
Dim col1 As IEnumerable(Of Integer) = {1, 2, 3}
Dim col2 As IEnumerable(Of Integer) = {4, 5, 6}
Dim col3 As IEnumerable(Of Integer) = {7, 8, 9}
Debug.WriteLine({col1, col2, col3}.StringJoin(", ")))
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.