NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

String.Join

[To be supplied.]

Overload List

Joins an array of strings together as one string with a separator between each original string.

[Visual Basic] Overloads Public Shared Function Join(String, String()) As String
[C#] public static string Join(String, String[]);
[C++] public: static String* Join(String*, String*[]);
[JScript] public static function Join(String, String[]) : String;

Joins an array of strings together as one string with a separator between each original string, starting at the specification location in the array.

[Visual Basic] Overloads Public Shared Function Join(String, String(), Integer, Integer) As String
[C#] public static string Join(String, String[], int, int);
[C++] public: static String* Join(String*, String*[], int, int);
[JScript] public static function Join(String, String[], int, int) : String;

See Also

String Class | String Members | System Namespace