1. private Apple apple;
  2.  
  3. public FruitHolder(ref Apple apple)
  4. {
  5.     this.apple = apple;
  6. }
  7.  
  8. public void DoSomethingWithApple()
  9. {
  10.     this.apple = new Apple(); // this is not saved? is there any way to?
  11. }