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