CollectionExtensionsToDelimitedStringTSource(IEnumerableTSource, String) Method
Converts an enumeration to a string 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,
string delimiter
)
<ExtensionAttribute>
Public Shared Function ToDelimitedString(Of TSource) (
source As IEnumerable(Of TSource),
delimiter As String
) As String
public:
[ExtensionAttribute]
generic<typename TSource>
static String^ ToDelimitedString(
IEnumerable<TSource>^ source,
String^ delimiter
)
JavaScript does not support generic types or methods.
- source IEnumerableTSource
- The source object to be converted into a delimited string.
- delimiter String
- The delimiting String used.
- TSource
- Type of IEnumerableT.
StringReturns a
String that is result of combining all elements in the list delimited by
delimiter.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).