Collection Class

Substitute for Microsoft.VisualBasic.Collection that implements a keys property

Definition

Namespace: inmydata.WindowsForms.Library
Assembly: inmydata.WindowsForms.Library (in inmydata.WindowsForms.Library.dll) Version: 1.0.0.0 (1.0.0.0)
C#
[SerializableAttribute]
public class Collection : Collection_Collection, IEnumerable, 
	ICollection, IList

Constructors

Properties

Count Returns an Integer containing the number of elements in a collection.
ItemInt32 Returns a specific element of a Collection object either by position or by key. Read-only.
ItemObject Returns a specific element of a Collection object either by position or by key.
ItemString Returns a specific element of a Collection object either by position or by key. Read-only.
Keys Gets a list of strings that represents the keys for this collection
Objects Gets a list of objects that represents the objects for this collection

Methods

Contains Returns a Boolean value indicating whether a Visual Basic Collection object contains an element with a specific key.
Equals Determines whether the specified object is equal to the current object.
(Overrides ObjectEquals(Object))
GetEnumerator Returns a reference to an enumerator object, which is used to iterate over a Collection object.

See Also