public static void Main()
Console.WriteLine( new string[] { "a" }.First() );
Console.WriteLine( new string[] { "a", "b" }.First() );
Console.WriteLine( new string[] { "a", "b" }.First(x => x.Equals("b")) );
Console.WriteLine( new string[] { "a", "ba", "be" }.First(x => x.Contains("b")) );