public static void Main(string[] args)
string[] planets = { "Mercury", "Venus",
"Earth", "Mars", "Jupiter",
"Saturn", "Uranus", "Neptune" };
Console.WriteLine("Planets begin with 'M': {0}", planets.Exists(element => element.StartsWith("M")));
Console.WriteLine("One or more planets begin with 'T': {0}", planets.Exists(element => element.StartsWith("T")));
Console.WriteLine("Is Pluto one of the planets? {0}", planets.Exists(element => element == "Pluto"));