CollectionExtensionsToDelimitedStringTSource(IEnumerableTSource, Char) 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.150 -- Release Build+64e3b411e1abfbd2d4d8a81e850c3909a0ce8731
public static string ToDelimitedString<TSource>(
this IEnumerable<TSource> source,
char delimiter
)
<ExtensionAttribute>
Public Shared Function ToDelimitedString(Of TSource) (
source As IEnumerable(Of TSource),
delimiter As Char
) As String
public:
[ExtensionAttribute]
generic<typename TSource>
static String^ ToDelimitedString(
IEnumerable<TSource>^ source,
wchar_t delimiter
)
JavaScript does not support generic types or methods.
- source IEnumerableTSource
- The source object to be converted into a delimited string.
- delimiter Char
- The delimiting character 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).