All Members of class Collection

class Collection | Constructors | Methods | Properties


Public Members

Removes all items from the System.Collections.IList.
public void Clear ( )

Gets the number of elements contained in the System.Collections.ICollection.
public int Count { get; }

Returns an enumerator that iterates through a collection.
public IEnumerator GetEnumerator ( )

Removes the System.Collections.IList item at the specified index.
public void RemoveAt ( int index )

Protected Members

protected Collection ( )

protected ArrayList InnerList { get; }

protected IList List { get; }

protected virtual void OnClear ( )

protected virtual void OnClearComplete ( )

protected virtual void OnInsert ( int index, object value )

protected virtual void OnInsertComplete ( int index, object value )

protected virtual void OnRemove ( int index, object value )

protected virtual void OnRemoveComplete ( int index, object value )

protected virtual void OnSet ( int index, object oldValue, object newValue )

protected virtual void OnSetComplete ( int index, object oldValue, object newValue )

protected virtual void OnValidate ( object value )