Ошибка при инициализации переменной делегатного типа - C#

Узнай цену своей работы

Формулировка задачи:

Нет в контексе removeSpaces Собственно вот код:
Листинг программы
  1. /*
  2. * Created by SharpDevelop.
  3. * User: User
  4. * Date: 20.03.2016
  5. * Time: 15:15
  6. *
  7. * To change this template use Tools | Options | Coding | Edit Standard Headers.
  8. */
  9. using System;
  10. namespace Delegate1
  11. {
  12. delegate string fas(string str);
  13. class DelTest
  14. {
  15. static string replaceSpaces(string a)
  16. {
  17. Console.WriteLine("Замена пробелов дефисами");
  18. return a.Replace(' ','-');
  19. }
  20. static string removeSpaces(string a)
  21. {
  22. string tmp = "";
  23. int i;
  24. Console.WriteLine("Удаление пробелов");
  25. for (i=0;i<a.Length;i++)
  26. if (a[i]!=' ')
  27. tmp+=a[i];
  28. return tmp;
  29. }
  30. static string reverseStr(string a)
  31. {
  32. int i;
  33. string tmp="";
  34. for (i=0;i<a.Length;i++)
  35. tmp+=a[a.Length-i-1];
  36. return tmp;
  37. }
  38. }
  39. class Program
  40. {
  41. public static void Main(string[] args)
  42. {
  43. fas a = new fas(removeSpaces);
  44. string str;
  45. str = Console.ReadLine();
  46. str = a(str);
  47. Console.WriteLine(str);
  48. // TODO: Implement Functionality Here
  49. Console.Write("Press any key to continue . . . ");
  50. Console.ReadKey(true);
  51. }
  52. }
  53. }

Решение задачи: «Ошибка при инициализации переменной делегатного типа»

textual
Листинг программы
  1. public static void Main(string[] args)
  2.         {
  3.             fas a = new fas(DelTest.removeSpaces);
  4.             string str;
  5.            
  6.             str = Console.ReadLine();
  7.            
  8.             str = a(str);
  9.            
  10.             Console.WriteLine(str);
  11.            
  12.             // TODO: Implement Functionality Here
  13.            
  14.             Console.Write("Press any key to continue . . . ");
  15.             Console.ReadKey(true);
  16.         }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

7   голосов , оценка 3 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы