StringConcat Method (String, String, String) |
Concatenates three 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
)
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.
Return Value
Type:
StringThe concatenation of
str0,
str1, and
str2.
See Also