ArcFM Responder Mobile Developer Guide
JoinToString(IEnumerable,String) Method






items to join
separating string
Builds a string that is the concatenation of all the items' string representation separated by separator
Syntax
'Declaration
 
<System.Runtime.CompilerServices.ExtensionAttribute()>
Public Overloads Shared Function JoinToString( _
   ByVal items As System.Collections.IEnumerable, _
   ByVal separator As System.String _
) As System.String
'Usage
 
Dim items As System.Collections.IEnumerable
Dim separator As System.String
Dim value As System.String
 
value = EnumerableExtensions.JoinToString(items, separator)
[System.Runtime.CompilerServices.Extension()]
public static System.string JoinToString( 
   System.Collections.IEnumerable items,
   System.string separator
)
public function JoinToString( 
    items: System.Collections.IEnumerable;
    separator: System.String
): System.String; static; 
System.Runtime.CompilerServices.ExtensionAttribute()
public static function JoinToString( 
   items : System.Collections.IEnumerable,
   separator : System.String
) : System.String;
[System.Runtime.CompilerServices.Extension()]
public: static System.string* JoinToString( 
   System.Collections.IEnumerable* items,
   System.string* separator
) 
[System.Runtime.CompilerServices.Extension()]
public:
static System.String^ JoinToString( 
   System.Collections.IEnumerable^ items,
   System.String^ separator
) 

Parameters

items
items to join
separator
separating string

Return Value

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

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

EnumerableExtensions Class
EnumerableExtensions Members
Overload List

Send Feedback