Click here to Skip to main content
15,885,216 members
Articles / Programming Languages / C#
Tip/Trick

.NET Double Reference

Rate me:
Please Sign up or sign in to vote.
4.33/5 (3 votes)
31 Mar 2011CPOL1 min read 26.4K   6   8
Simple class to encapsulate a double reference

Introduction

The DoubleReference class below wraps a reference which gives one reference to references. When used, they act like double pointers in C and in some cases can increase efficiency a great deal.

Background

Double pointers in C give one the ability to have objects point to a "placeholder". The placeholder can change value and all the objects pointing to the placeholder will see the change. The placeholder itself is usually a reference/pointer to the object of interest. This can be achieved similarly in .NET by wrapping a reference in a class.

Using the Code

Use the class...

C#
public class DoubleReference<T>
{
    public T Reference { get; set; }
    public DoubleReference(T reference) { Reference = reference; }
    public static implicit operator T(DoubleReference<T> x) { return x.Reference; }
    public static T operator ~(DoubleReference<T> x) { return x.Reference; }
}        

...as you would any reference but simply wrap them with this class. You can provide a direct link to a reference but wrap it in a property of the original type. This allows complete transparency.

C#
DoubleReference<Test2> reff;
public Test2 RootTest { get { return reff.Reference; } set { reff.Reference = value; } }

Here we have a double reference placeholder. RootTest simply wraps the double reference and returns whatever it points to. Alternatively, we could expose the double reference if we want to avoid possible issues that changes to RootTest might incur. We could also remove the setter for Root Test.

The idea here is that we can create a single DoubleReference class and pass that around. As long as objects that reference this object do not change their reference, any changes to the double reference's reference will "propagate" to all objects using it.

You can use this, for example, in a collection where every element in the collection has a "Current" property. The Current property points to some current element. When the value has to change, it should propagate to all elements. By using a double reference, you can do this instantaneously at the cost of the extra memory.

History

  • 29th March, 2011: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWhy the operator ~? Pin
Don Kackman31-Mar-11 10:44
Don Kackman31-Mar-11 10:44 
AnswerRe: Why the operator ~? Pin
Jon_Slaughter31-Mar-11 13:54
Jon_Slaughter31-Mar-11 13:54 
GeneralRe: Why the operator ~? Pin
Don Kackman1-Apr-11 7:02
Don Kackman1-Apr-11 7:02 
GeneralRe: Why the operator ~? [modified] Pin
Jon_Slaughter1-Apr-11 8:39
Jon_Slaughter1-Apr-11 8:39 
GeneralRe: Why the operator ~? Pin
Don Kackman1-Apr-11 11:00
Don Kackman1-Apr-11 11:00 
GeneralRe: Why the operator ~? Pin
Jon_Slaughter1-Apr-11 14:09
Jon_Slaughter1-Apr-11 14:09 
GeneralSingle-item arrays... Pin
supercat931-Mar-11 5:35
supercat931-Mar-11 5:35 
GeneralRe: Single-item arrays... Pin
Jon_Slaughter31-Mar-11 9:20
Jon_Slaughter31-Mar-11 9:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.