Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. class MyClass{
  2. public int x;
  3.  
  4. public MyClass(int i) {
  5. x = i;
  6. }
  7.  
  8. //~MyClass() {
  9. // Console.WriteLine("Jest wywolany destruktor");
  10. //}
  11. }
  12.  
  13. class Program
  14. {
  15. public static void Main(string[] args)
  16. {
  17. MyClass t1 = new MyClass(10);
  18. MyClass t2 = new MyClass(20);
  19.  
  20. Console.WriteLine(t1.x + " " + t2.x);
  21.  
  22. Console.WriteLine("Jest wywolany destruktor");
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement