Skip to main content
.NET 6.0+

DynamicCollectionBase Methods

An abstract class that serves as the base class for DynamicCollection.
Name Description
Add(Object) Adds the specified object to the collection. This method is implemented to support the IList interface.
Clear() Removes all objects from the collection. This method is implemented to support the IList interface.
Contains(Object) Checks whether the collection contains the specified object. This method is implemented to support the IList interface.
CopyTo(Array, Int32) Copies the collection to the specified array. This method is implemented to support the ICollection interface.
Dispose() Disposes of all resources this DynamicCollectionBase object uses. This method is implemented to support the IDisposable interface.
Equals(Object, Object) static Determines whether the specified object instances are considered equal. Inherited from Object.
Equals(Object) Determines whether the specified object is equal to the current object. Inherited from Object.
GetHashCode() Serves as the default hash function. Inherited from Object.
GetType() Gets the Type of the current instance. Inherited from Object.
IndexOf(Object) Determines the index of the specified object in the collection. This method is implemented to support the IList interface.
Insert(Int32, Object) Inserts the specified object into the collection at the specified position. This method is implemented to support the IList interface.
MemberwiseClone() protected Creates a shallow copy of the current Object. Inherited from Object.
ReferenceEquals(Object, Object) static Determines whether the specified Object instances are the same instance. Inherited from Object.
Reload() Clears the collection. The FetchObjects event will occur on the next access to this collection.
Remove(Object) Removes the specified object from the collection. This method is implemented to support the IList interface.
RemoveAt(Int32) Removes an object from the specified index in the collection. This method is implemented to support the IList interface.
ToString() Returns a string that represents the current object. Inherited from Object.
See Also