Share via


Concat Method (String, String, String, String)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Concatenates four specified instances of String.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Shared Function Concat ( _
    str0 As String, _
    str1 As String, _
    str2 As String, _
    str3 As String _
) As String
public static string Concat(
    string str0,
    string str1,
    string str2,
    string str3
)
public:
static String^ Concat(
    String^ str0, 
    String^ str1, 
    String^ str2, 
    String^ str3
)
static member Concat : 
        str0:string * 
        str1:string * 
        str2:string * 
        str3:string -> string 
public static function Concat(
    str0 : String, 
    str1 : String, 
    str2 : String, 
    str3 : String
) : String

Parameters

Return Value

Type: System. . :: . .String
The concatenation of str0, str1, str2, and str3.

Remarks

The method concatenates str0, str1, str2, and str3; it does not add any delimiters.

An Empty string is used in place of any null object in the array.

.NET Framework Security

See Also

Reference

String Class

Concat Overload

System Namespace