I know this is possible in C++ with pointers but dont know how to do it in C#.
Simplified Sample Code and Comments
//create object A
object A = new object();
//create object B
object B = A;
//create object C
object C = new object();
//I need to change Object A to point to the contents of Object C only using Object B
Simplified Sample Code and Comments
//create object A
object A = new object();
//create object B
object B = A;
//create object C
object C = new object();
//I need to change Object A to point to the contents of Object C only using Object B
Comment