Any with condition : Any : LINQ C# Source Code


Custom Search

C# Source Code » LINQ » Any »

 

Any with condition








    
 
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Linq;

public class MainClass{
   public static void Main(){
       int[] numbers = { 2, 6, 1, 5, 10 };
       Console.WriteLine("Is there at least one odd number?");
       Console.Write(numbers.Any(e => e % 2 == 1) ? "Yes, there is" : "No, there isn't");
   }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo LINQ
» Any