| BitArray | Array of bits which can be addressed by index. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. |
| BitArrayPtr | Pointer to BitArray. This type is a pointer to manage other object’s deletion. It should be allocated on stack and passed to functions either by value or by const reference. |
| CollectionBase | Provides an abstract base class for a strongly typed collection. |
| ICollection | Defines non generic collection interface. |
| IEnumerable | IEnumerable is the base interface for all non-generic collections that can be enumerated. |
| IEnumerator | Interface of enumerator which can be used to iterate through some elements. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. |
| IEnumeratorImplRefType | Wrapper the creates non generic IEnumerator implementation over the generic Iterator IEnumeratorImplRefType - wrapper for the Reference Types. |
| IEnumeratorImplValueType | Wrapper the creates non generic IEnumerator implementation over the generic Iterator IEnumeratorImplRefType - wrapper for the value Types. |
| IList | IList Represents a non-generic collection of objects that can be individually accessed by index. |
| IListImplRefType | Stub that implements System::Collections::IList interface on System::Collections::Generic::List object Implementation for reference types. |
| IListImplValueType | Stub that implements System::Collections::IList interface on System::Collections::Generic::List object Implementation for value types. |
| IListWrapper | Intrerface to support casting from generic to non-generic collection. |
| Invalidatable | Class that makes it possible to track the state of its descendants through InvalidatableTracker objects. |
| InvalidatableTracker | Class that implements trackers of Invalidatable objects. |