In This Topic
String helper join method to display an enumrable of object as a single string.
Syntax
'Declaration
Public Shared Function Join( _
ByVal As System.String, _
ByVal As IEnumerator _
) As System.String
public static System.string Join(
System.string ,
IEnumerator
)
Parameters
- separator
- The separator.
- elements
- The enumerable.
Return Value
A string with array elements serparated by the seperator.
See Also