Guest User

Untitled

a guest
May 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. private double _a;
  2. new public double a
  3. {
  4. get { return _a; }
  5. set
  6. {
  7. SprawdzDane(value, b, c);
  8. _a = value;
  9. }
  10. }
  11.  
  12. public TrojkatMutable1(double a, double b, double c)
  13. : base(a,b,c)
  14. {
  15.  
  16. }
  17.  
  18. TrojkatMutable1 tm = new TrojkatMutable1(2,3,4);
  19.  
  20. object.a = 10
Add Comment
Please, Sign In to add comment