The xCollectiveXNA library is a simple library containing two prebuilt generic collections, a standard indexed collection that wraps a List<> type and a standard dictionary collection that wraps a Dictionary<,> type.
This library was created with the intention of allowing me to have a common type across my various projects for building generic collections that raise events.
Features
- Easy ready made generic collections that raise before and after events
- Wraps the functionality of a List<> or Dictionary<,> objects
- Can pass in your own List<> or Dictionary<,> object during creation
- Swap out the internal List<> or Dictionary<,> object at any time by setting a property.
Changes from release 1
- Removed the CallDisposeOnItems property.
- Added xml comments to all the code.
- Events now comform to the standard .net (sender, eventargs) style.
- Reduced the number of lines of code.
Downloads
Documentation