Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Concatenates two string values.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Shared Function Concat ( _
first As Object, _
second As Object _
) As Object
'Usage
Dim first As Object
Dim second As Object
Dim returnValue As Object
returnValue = OpenTypeMethods.Concat(first, _
second)
public static Object Concat(
Object first,
Object second
)
public:
static Object^ Concat(
Object^ first,
Object^ second
)
static member Concat :
first:Object *
second:Object -> Object
public static function Concat(
first : Object,
second : Object
) : Object
Parameters
- first
Type: System.Object
The first string.
- second
Type: System.Object
The second string.
Return Value
Type: System.Object
A new instance that is the concatenated string.