Guest User

Untitled

a guest
Jul 28th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public Class1()
  2. {
  3. this.Variable = new Variable();
  4. }
  5.  
  6. public Class1(Variable vari)
  7. {
  8. this.Variable = vari;
  9. }
  10.  
  11. public Class1()
  12. : this(new Variable())
  13. {
  14.  
  15. }
  16.  
  17. public Class1(Variable vari)
  18. {
  19. this.Variable = vari;
  20. }
Add Comment
Please, Sign In to add comment