Made the Dispose() method of the parenting collection public (for now only?); found another, better, priority queue implementation to use for reference

git-svn-id: file:///srv/devel/repo-conversion/nusu@3 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2007-03-01 21:24:19 +00:00
parent fb7dba1c2c
commit d339e00bce
3 changed files with 362 additions and 204 deletions

View file

@ -95,7 +95,7 @@ namespace Nuclex.Support.Collections {
}
/// <summary>Release all resources owned by the instance explicitely</summary>
void IDisposable.Dispose() {
public void Dispose() {
Dispose(true); // Called by user
}