Concat Method (String, String, String)
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Concatenates three 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 _
) As String
public static string Concat(
string str0,
string str1,
string str2
)
public:
static String^ Concat(
String^ str0,
String^ str1,
String^ str2
)
static member Concat :
str0:string *
str1:string *
str2:string -> string
public static function Concat(
str0 : String,
str1 : String,
str2 : String
) : String
Parameters
- str0
Type: System. . :: . .String
The first string to concatenate.
- str1
Type: System. . :: . .String
The second string to concatenate.
- str2
Type: System. . :: . .String
The third string to concatenate.
Return Value
Type: System. . :: . .String
The concatenation of str0, str1, and str2.
Remarks
The method concatenates str0, str1, and str2; it does not add any delimiters.
An Empty string is used in place of any null argument.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.