using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string[] array = { "c++", "csharp", "php" };
bool exit = Array.Exists(array, element => element.StartsWith("c"));
if (exit)
Console.WriteLine("Exist"); // Exist
else
Console.WriteLine("Not Exist");
exit = Array.Exists(array, element => element.StartsWith("j"));
if (exit)
Console.WriteLine("Exist");
else
Console.WriteLine("Not Exist"); // Not Exist
}
}
}
/*
run:
Exist
Not Exist
*/