CollectionExtensionsToDelimitedStringTSource(IEnumerableTSource) Method
Converts an enumeration to a string, using the default delimiter ("|") that can later be
converted back to a list using LoadDelimitedString.
Namespace: Gemstone.Collections.CollectionExtensionsAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public static string ToDelimitedString<TSource>(
this IEnumerable<TSource> source
)
<ExtensionAttribute>
Public Shared Function ToDelimitedString(Of TSource) (
source As IEnumerable(Of TSource)
) As String
public:
[ExtensionAttribute]
generic<typename TSource>
static String^ ToDelimitedString(
IEnumerable<TSource>^ source
)
JavaScript does not support generic types or methods.
- source IEnumerableTSource
- The source object to be converted into a delimited string.
- TSource
- Type of IEnumerableT.
StringReturns a
String that is result of combining all elements in the list delimited by the '|' character.In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableTSource. 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).