ArcFM Engine Developer Guide
JoinToString<T>(IEnumerable<T>,String) Method


Type of items in the collection
items to join
separating string
Builds a string that is the concatenation of all the items' string representation separated by separator
Syntax
'Declaration
 
<ExtensionAttribute()>
Public Overloads Shared Function JoinToString(Of T)( _
   ByVal items As IEnumerable(Of T), _
   ByVal separator As String _
) As String
'Usage
 
Dim items As IEnumerable(Of T)
Dim separator As String
Dim value As String
 
value = EnumerableExtensions.JoinToString(Of T)(items, separator)
[Extension()]
public static string JoinToString<T>( 
   IEnumerable<T> items,
   string separator
)

Parameters

items
items to join
separator
separating string

Type Parameters

T
Type of items in the collection

Return Value

string that is the concatenation of all the items' string representation separated by separator
Requirements

Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)

Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.

See Also

Reference

EnumerableExtensions Class
EnumerableExtensions Members
Overload List

 

 


Send Comment