dCsharp

APCollection Members

APCollection overview

Public Instance Constructors

APCollection Constructor Construct a collection-view of the target objects in the enclosing object graph slice reachable by following the strategy.

Public Instance Properties

Count The number of target objects in the collection view. Unfortunately this has to be linear time-- we can't even cache the result, because the structure is mutable behind our back.
IsEmpty 
MaxSize The maximum size of this container, or Integer.MAX_VALUE, whichever is smaller.

Public Instance Methods

Clear (inherited from CollectionBase)Removes all objects from the CollectionBase instance.
Contains 
Equals 
GetEnumerator (inherited from CollectionBase)Returns an enumerator that can iterate through the CollectionBase instance.
GetHashCode 
GetType (inherited from Object)Gets the Type of the current instance.
RemoveAt (inherited from CollectionBase)Removes the element at the specified index of the CollectionBase instance.
ToArrayOverloaded.  
ToString 

Protected Instance Properties

InnerList (inherited from CollectionBase)Gets an ArrayList containing the list of elements in the CollectionBase instance.
List (inherited from CollectionBase)Gets an IList containing the list of elements in the CollectionBase instance.

Protected Instance Methods

Finalize (inherited from Object)Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
MemberwiseClone (inherited from Object)Creates a shallow copy of the current Object.
OnClear (inherited from CollectionBase)Performs additional custom processes when clearing the contents of the CollectionBase instance.
OnClearComplete (inherited from CollectionBase)Performs additional custom processes after clearing the contents of the CollectionBase instance.
OnInsert (inherited from CollectionBase) Performs additional custom processes before inserting a new element into the CollectionBase instance.
OnInsertComplete (inherited from CollectionBase)Performs additional custom processes after inserting a new element into the CollectionBase instance.
OnRemove (inherited from CollectionBase)Performs additional custom processes when removing an element from the CollectionBase instance.
OnRemoveComplete (inherited from CollectionBase)Performs additional custom processes after removing an element from the CollectionBase instance.
OnSet (inherited from CollectionBase) Performs additional custom processes before setting a value in the CollectionBase instance.
OnSetComplete (inherited from CollectionBase) Performs additional custom processes after setting a value in the CollectionBase instance.
OnValidate (inherited from CollectionBase)Performs additional custom processes when validating a value.

See Also

APCollection Class | edu.neu.ccs.demeter.dCsharp Namespace