ArrayPrototype.concat(Object, VsaEngine, Object[]) Method

Definition

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

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

public:
 static Microsoft::JScript::ArrayObject ^ concat(System::Object ^ thisob, Microsoft::JScript::Vsa::VsaEngine ^ engine, ... cli::array <System::Object ^> ^ args);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasEngine | Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject | Microsoft.JScript.JSFunctionAttributeEnum.HasVarArgs, Microsoft.JScript.JSBuiltin.Array_concat)]
public static Microsoft.JScript.ArrayObject concat (object thisob, Microsoft.JScript.Vsa.VsaEngine engine, params object[] args);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasEngine | Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject | Microsoft.JScript.JSFunctionAttributeEnum.HasVarArgs, Microsoft.JScript.JSBuiltin.Array_concat)>]
static member concat : obj * Microsoft.JScript.Vsa.VsaEngine * obj[] -> Microsoft.JScript.ArrayObject
Public Shared Function concat (thisob As Object, engine As VsaEngine, ParamArray args As Object()) As ArrayObject

Parameters

thisob
Object

The object that this method is acting upon.

engine
VsaEngine

A reference to the scripting engine.

args
Object[]

The objects or arrays to append to thisob.

Returns

thisob and args concatenated.

Attributes

Applies to