Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Footgolf
  8. {
  9. class Adatok
  10. {
  11. public string nev;
  12. public string kategoria;
  13. public string egyesulet;
  14. public int[] pontok = new int[8];
  15.  
  16. public Adatok(string sor)
  17. {
  18. var t = sor.Split(';');
  19. this.nev = t[0];
  20. this.kategoria = t[1];
  21. this.egyesulet = t[2];
  22. this.pontok = t[3]; // itt akadtam el.
  23. }
  24.  
  25.  
  26.  
  27.  
  28.  
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement