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 index = arrayEnglishMonth.Select((v, i) => new { v, i })
  11. .Where(i => i.v.StartsWith("AUG"))
  12. .Select(i => i.i)
  13. .First();
  14. Console.WriteLine(index);
  15. }
  16. }
Success #stdin #stdout 0.06s 34152KB
stdin
Standard input is empty
stdout
7