StringConcat Method (String, String, String, String) |
Concatenates four specified instances of
String.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public static string Concat(
string str0,
string str1,
string str2,
string str3
)
Parameters
- str0
- Type: SystemString
The first string to concatenate. - str1
- Type: SystemString
The second string to concatenate. - str2
- Type: SystemString
The third string to concatenate. - str3
- Type: SystemString
The fourth string to concatenate.
Return Value
Type:
StringThe concatenation of
str0,
str1,
str2, and
str3.
See Also