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.Concat (String[])

Creates a new string from the concatenation of two specific strings.

[Visual Basic]
Overloads Public Shared Function Concat( _
   ByVal values() As String _
) As String
[C#]
public static string Concat(
   string[] values
);
[C++]
public: static String* Concat(
   String* values[]
);
[JScript]
public static function Concat(
   values : String[]
) : String;

Parameters

values
The string to be concatenated.

Return Value

Returns a new string.

Remarks

The Concat method is used to create new strings from several prior existing strings. The empty string is inserted in place of any null strings.

See Also

String Class | String Members | System Namespace | String.Concat Overload List