Guest User

Untitled

a guest
Jan 20th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. class Grajek
  2. {
  3. private string nazwa;
  4. private string stylMuzyczny;
  5.  
  6. public Grajek() { }
  7.  
  8. public Grajek(string nazwa, string stylMuzyczny)
  9. {
  10. this.nazwa = nazwa;
  11. this.stylMuzyczny = stylMuzyczny;
  12. }
  13.  
  14. public Grajek(string nazwa)
  15. :this(nazwa,"brak stylu")
  16. {
  17. }
  18.  
  19.  
  20. }
  21. }
Add Comment
Please, Sign In to add comment