classi 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Terzaapp
  7. {
  8. class Classi
  9. {
  10. string nome;
  11. string cognome;
  12. int età;
  13. string titoli_studio;
  14. public string Nome
  15. {
  16. set
  17. {
  18. Nome = value;
  19. }
  20. get
  21. {
  22. return Nome;
  23. }
  24. }
  25. public string Cognome
  26. {
  27. set
  28. {
  29. Cognome = value;
  30. }
  31. get
  32. {
  33. return Cognome;
  34. }
  35. }
  36. public int Età
  37. {
  38. set
  39. {
  40. Età= value;
  41. }
  42. get
  43. {
  44. return Età;
  45. }
  46. }
  47. public string Titoli_studio
  48. {
  49. set
  50. {
  51. Titoli_studio = value;
  52. }
  53. get
  54. {
  55. return Titoli_studio;
  56. }
  57. }
  58. }
  59. }