Class1.cs 423 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Library6Properties
  7. {
  8. internal class Class1
  9. {
  10. private char symbol;
  11. public char Symbol
  12. {
  13. get
  14. {
  15. return symbol;
  16. }
  17. set
  18. {
  19. this.symbol = value;
  20. }
  21. }
  22. }
  23. }