fork download
  1. using System;
  2. using System.Globalization;
  3.  
  4. public class Test
  5. {
  6. public static void Main() {
  7. var ci = CultureInfo.GetCultureInfo("ru-RU");
  8. var dti = ci.DateTimeFormat;
  9. var index = 0;
  10. do {
  11. Console.Write("Месяц:");
  12. index = Array.IndexOf(dti.MonthNames, ci.TextInfo.ToTitleCase(Console.ReadLine().ToLower())) + 1;
  13. } while(index == 0);
  14. Console.WriteLine("Номер месяца {0}:", index);
  15. }
  16. }
Success #stdin #stdout 0.01s 131520KB
stdin
аПрЕль
stdout
Месяц:Номер месяца 4: