ArrayPrototype::concat Method (Object^, VsaEngine^, array<Object^>^)

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Concatenates objects or arrays to the end of the specified object or array.

Namespace:   Microsoft.JScript
Assembly:  Microsoft.JScript (in Microsoft.JScript.dll)

public:
[JSFunctionAttribute(JSFunctionAttributeEnum::None | JSFunctionAttributeEnum::HasThisObject | JSFunctionAttributeEnum::HasVarArgs | JSFunctionAttributeEnum::HasEngine, 
	JSBuiltin::Array_concat)]
static ArrayObject^ concat(
	Object^ thisob,
	VsaEngine^ engine,
	... array<Object^>^ args
)

Parameters

thisob
Type: System::Object^

The object that this method is acting upon.

engine
Type: Microsoft.JScript.Vsa::VsaEngine^

A reference to the scripting engine.

args
Type: array<System::Object^>^

The objects or arrays to append to thisob.

Return Value

Type: Microsoft.JScript::ArrayObject^

thisob and args concatenated.

.NET Framework
Available since 1.1
Return to top
Show: