Generic WeakReference

 
 
  • Gérald Barré

The WeakReference class although convenient is not generic. So I created a generic version:

C#
/// <summary>
/// Represents a weak reference, which references an object while still
/// allowing that object to be reclaimed by garbage collection.
/// </summary>
/// <typeparam name="T">The type of the object that is referenced.</typeparam>
[Serializable]
public class WeakReference<T> : WeakReference where T : class
{
    /// <summary>
    /// Initializes a new instance of the Minimal.WeakReference{T} class,
    /// referencing the specified object.
    /// </summary>
    /// <param name="target">The object to reference.</param>
    public WeakReference(T target)
        : base(target)
    {
    }

    /// <summary>
    /// Initializes a new instance of the WeakReference{T} class, referencing
    /// the specified object and using the specified resurrection tracking.
    /// </summary>
    /// <param name="target">An object to track.</param>
    /// <param name="trackResurrection">Indicates when to stop tracking the object.
    /// If true, the object is tracked after finalization; if false, the object is
    /// only tracked until finalization.</param>
    public WeakReference(T target, bool trackResurrection)
        : base(target, trackResurrection)
    {
    }

    protected WeakReference(SerializationInfo info, StreamingContext context)
        : base(info, context)
    {
    }

    /// <summary>
    /// Gets or sets the object (the target) referenced by the
    /// current WeakReference{T}
    /// object.
    /// </summary>
    public new T Target
    {
        get { return (T)base.Target; }
        set { base.Target = value; }
    }

    /// <summary>
    /// Casts an object of the type T to a weak reference
    /// of T.
    /// </summary>
    public static implicit operator WeakReference<T>(T target)
    {
        if (target == null)
        {
            throw new ArgumentNullException("target");
        }
        return new WeakReference<T>(target);
    }

    /// <summary>
    /// Casts a weak reference to an object of the type the
    /// reference represents.
    /// </summary>
    public static implicit operator T(WeakReference<T> reference)
    {
        return reference != null ? reference.Target : null;
    }
}

Do you have a question or a suggestion about this post? Contact me!

Follow me:
Enjoy this blog?Buy Me A Coffee💖 Sponsor on GitHub