NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ArrayList Constructor

Initializes a new instance of the ArrayList class.

Overload List

Creates an empty ArrayList with an initial capacity of 16.

[Visual Basic] Overloads Public Sub New()
[C#] public ArrayList();
[C++] public: ArrayList();
[JScript] public function ArrayList();

Creates an empty ArrayList with the specified initial capacity.

[Visual Basic] Overloads Public Sub New(Integer)
[C#] public ArrayList(int);
[C++] public: ArrayList(int);
[JScript] public function ArrayList(int);

Creates an ArrayList containing elements copied from the specified collection.

[Visual Basic] Overloads Public Sub New(ICollection)
[C#] public ArrayList(ICollection);
[C++] public: ArrayList(ICollection*);
[JScript] public function ArrayList(ICollection);

See Also

ArrayList Class | ArrayList Members | System.Collections Namespace