Some more minor documentation improvements
git-svn-id: file:///srv/devel/repo-conversion/nusu@81 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
2cc7b27b0c
commit
a666885598
2 changed files with 7 additions and 2 deletions
|
@ -31,7 +31,12 @@ namespace Nuclex.Support.Collections {
|
|||
public event EventHandler<ItemEventArgs<ItemType>> ItemAdded;
|
||||
/// <summary>Raised when an item is removed from the collection</summary>
|
||||
public event EventHandler<ItemEventArgs<ItemType>> ItemRemoved;
|
||||
/// <summary>Raised the collection is about to be cleared</summary>
|
||||
/// <summary>Raised when the collection is about to be cleared</summary>
|
||||
/// <remarks>
|
||||
/// This could be covered by calling ItemRemoved for each item currently
|
||||
/// contained in the collection, but it is often simpler and more efficient
|
||||
/// to process the clearing of the entire collection as a special operation.
|
||||
/// </remarks>
|
||||
public event EventHandler Clearing;
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue