Concat Method (Object, Object, Object)
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Concatenates the string representations of three specified objects.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared Function Concat ( _
arg0 As Object, _
arg1 As Object, _
arg2 As Object _
) As String
public static string Concat(
Object arg0,
Object arg1,
Object arg2
)
public:
static String^ Concat(
Object^ arg0,
Object^ arg1,
Object^ arg2
)
static member Concat :
arg0:Object *
arg1:Object *
arg2:Object -> string
public static function Concat(
arg0 : Object,
arg1 : Object,
arg2 : Object
) : String
Parameters
- arg0
Type: System. . :: . .Object
The first object to concatenate.
- arg1
Type: System. . :: . .Object
The second object to concatenate.
- arg2
Type: System. . :: . .Object
The third object to concatenate.
Return Value
Type: System. . :: . .String
The concatenated string representations of the values of arg0, arg1, and arg2.
Remarks
The method concatenates arg0, arg1, and arg2 by calling the parameterless ToString method of each object; it does not add any delimiters.
String..::..Empty is used in place of any null argument.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.