Click or drag to resize
StringConcat Method (Object, Object)
Concatenates the string representations of two specified objects.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static string Concat(
	Object arg0,
	Object arg1
)

Parameters

arg0
Type: SystemObject
The first object to concatenate.
arg1
Type: SystemObject
The second object to concatenate.

Return Value

Type: String
The concatenated string representations of the values of arg0 and arg1.
See Also