ArrayPrototype.concat(Object, VsaEngine, Object[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.