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
|
@ -31,7 +31,12 @@ namespace Nuclex.Support.Collections {
|
||||||
public event EventHandler<ItemEventArgs<ItemType>> ItemAdded;
|
public event EventHandler<ItemEventArgs<ItemType>> ItemAdded;
|
||||||
/// <summary>Raised when an item is removed from the collection</summary>
|
/// <summary>Raised when an item is removed from the collection</summary>
|
||||||
public event EventHandler<ItemEventArgs<ItemType>> ItemRemoved;
|
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;
|
public event EventHandler Clearing;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -25,7 +25,7 @@ using System.Runtime.Serialization;
|
||||||
namespace Nuclex.Support {
|
namespace Nuclex.Support {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents a weak reference, which references an object while still allowing
|
/// Type-safe weak reference, referencing an object while still allowing
|
||||||
/// that object to be garbage collected.
|
/// that object to be garbage collected.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class WeakReference<ReferencedType> : WeakReference
|
public class WeakReference<ReferencedType> : WeakReference
|
||||||
|
|
Loading…
Reference in New Issue
Block a user