[To be supplied.]
Adds value to the collection.
[Visual Basic] Overloads Overridable Public Sub Add(Object, Object)
[C#] public virtual void Add(Object, Object);
[C++] public: virtual void Add(Object*, Object*);
[JScript] public function Add(Object, Object);
Adds a new instance of an item to the collection using a constructor that takes constructorArgs arguments.
[Visual Basic] Overloads Overridable Public Function Add(Object, Object()) As Object
[C#] public virtual object Add(Object, Object[]);
[C++] public: virtual Object* Add(Object*, Object*[]);
[JScript] public function Add(Object, Object[]) : Object;
Adds a new instance of an item to the collection using a constructor that takes no arguments.
[Visual Basic] Overloads Overridable Public Function Add(Object) As Object
[C#] public virtual object Add(Object);
[C++] public: virtual Object* Add(Object*);
[JScript] public function Add(Object) : Object;
CollectionInfo Class | CollectionInfo Members | System.WinForms.ComponentModel Namespace