Added license key class that had been lingering in the code snippets sections of my homepage for months now

git-svn-id: file:///srv/devel/repo-conversion/nusu@6 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2007-03-28 22:19:34 +00:00
parent c346a07ab0
commit f4b2062e19
4 changed files with 317 additions and 2 deletions

View file

@ -61,9 +61,9 @@ namespace Nuclex.Support.Collections {
/// <summary>Disposes the collection and optionally all items contained therein</summary>
/// <param name="disposeItems">Whether to try calling Dispose() on all items</param>
/// <remarks>
/// This method is intended to support collections that need to dispose their
/// This method is intended to support collections that need to dispose of their
/// items. The ParentingCollection will first detach all items from the parent
/// object and them call Dispose() on any item that implements IDisposable.
/// object and then call Dispose() on any item that implements IDisposable.
/// </remarks>
protected void InternalDispose(bool disposeItems) {