Class5.cs 755 B

12345678910111213141516171819202122232425262728293031323334353637
  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 Class5
  9. {
  10. int num;
  11. string text;
  12. public int Num
  13. {
  14. set
  15. {
  16. if (value >= 0)
  17. {
  18. this.num = value;
  19. this.text = Convert.ToString(value, 2);
  20. }
  21. else
  22. {
  23. Console.Write("Введите неотрицательное число");
  24. }
  25. }
  26. }
  27. public string Text
  28. {
  29. get
  30. {
  31. return text;
  32. }
  33. }
  34. }
  35. }