fork(1) download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string[] arrayEnglishMonth = { "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER" };
  9.  
  10. var item = arrayEnglishMonth.First(c => c.StartsWith("AUG"));
  11. var index = Array.IndexOf(arrayEnglishMonth, item);
  12. Console.WriteLine(index);
  13. }
  14. }
Success #stdin #stdout 0.05s 34128KB
stdin
Standard input is empty
stdout
7