Mega Code Archive

 
Categories / C# / LINQ
 

First with string method

using System; using System.Linq; using System.Collections; using System.Collections.Generic; public class MainClass {     public static void Main() {         string[] presidents = {"G", "H", "a", "H", "over", "Jack"};         string name = presidents.First(p => p.StartsWith("H"));         Console.WriteLine(name);     } }