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 (Object, Object, Object)

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

[Visual Basic]
Overloads Public Shared Function Concat( _
   ByVal arg0 As Object, _
   ByVal arg1 As Object, _
   ByVal arg2 As Object _
) As String
[C#]
public static string Concat(
   object arg0,
   object arg1,
   object arg2
);
[C++]
public: static String* Concat(
   Object* arg0,
   Object* arg1,
   Object* arg2
);
[JScript]
public static function Concat(
   arg0 : Object,
   arg1 : Object,
   arg2 : Object
) : String;

Parameters

arg0
The first object.
arg1
The second object.
arg2
The third object.

Return Value

The new string.

Remarks

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

See Also

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