Advertisement
Guest User

Untitled

a guest
Aug 31st, 2011
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement