Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 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. using System.IO;
  7.  
  8. namespace feherje
  9. {
  10. class feherje
  11. {
  12. public string rovidites;
  13. public char betujel;
  14. public int Cdb;
  15. public int Hdb;
  16. public int Odb;
  17. public int Ndb;
  18. public int Sdb;
  19. public feherje(string rov, char bj, int C, int H, int O, int N, int S)
  20. {
  21. rovidites = rov;
  22. betujel = bj;
  23. Cdb = C;
  24. Hdb = H;
  25. Odb = O;
  26. Ndb = N;
  27. Sdb = S;
  28. }
  29.  
  30. }
  31. class Program
  32. {
  33. static void Main(string[] args)
  34. {
  35. List<feherje> feherjek = new List<feherje>();
  36. FileStream fajl = new FileStream("aminosav.txt", FileMode.Open);
  37.  
  38. fajl.Close();
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45. Console.ReadKey();
  46. }
  47. }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement