NewSimbol.cs 356 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Library9Delegates
  7. {
  8. delegate void СharDelegate(char simbol); //Объявление делегата
  9. internal class NewSimbol
  10. {
  11. public char simbol;
  12. public void SetChar(char simbol)
  13. {
  14. this.simbol = simbol;
  15. }
  16. }
  17. }