Added some classes from the public API of Microsoft.JScript.
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / VBArrayConstructor.cs
1 //
2 // VBArrayConstructor.cs:
3 //
4 // Author: Cesar Octavio Lopez Nataren
5 //
6 // (C) 2003, Cesar Octavio Lopez Nataren, <cesar@ciencias.unam.mx>
7 //
8
9 namespace Microsoft.JScript
10 {
11         using System;
12
13         public class VBArrayConstructor : ScriptFunction
14         {
15                 [JSFunctionAttribute(JSFunctionAttributeEnum.HasVarArgs)]
16                 public new Object CreateInstance (params Object [] args)
17                 {
18                         throw new NotImplementedException ();
19                 }
20         }
21 }