Microsoft.JScript.Globals.ConstructArrayLiteral C# (CSharp) Method

ConstructArrayLiteral() public static method

public static ConstructArrayLiteral ( Object args ) : ArrayObject
args Object
return ArrayObject
      public static ArrayObject ConstructArrayLiteral(Object[] args){
        return (ArrayObject)ArrayConstructor.ob.ConstructArray(args);
      }