using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
namespace LINQ
{
public class ExempleAny
{
public static void Main()
{
string[] listeSite = { "www.mesexemples.com", "java.mesexemples.com", "php.mesexemples.com", "android.mesexemples.com", "www.yahoo.com", "www.google.fr" };
bool any = listeSite.Any();
Console.WriteLine(any);
}
}
}