Click or drag to resize
StringConcat Method (String, String)
Concatenates two specified instances of String.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
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: String
The concatenation of str0 and str1.
See Also