Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class Foo
  2. {
  3. public X x = new X();
  4. public Foo(X _x)
  5. {
  6. x = _x;
  7. }
  8. }
  9.  
  10. class Foo
  11. {
  12. public X x;
  13. public Foo(X _x)
  14. {
  15. x = _x;
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement