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

@ -59,7 +59,7 @@ namespace Nuclex.Support.Serialization {
);
// Let the blueprint load its own data and add it to the collection
((IBinarySerializable)item).Load(reader);
(item as IBinarySerializable).Load(reader);
collection.Add(item);
} // for