Use Contains to check the existance of an element

image_pdfimage_print
   
 
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, 56, 102 };
       Console.WriteLine("Is there the number 102?");
       Console.Write(numbers.Contains(102) ? "Yes, there is" : "No, there isn't");
   }
}

    


This entry was posted in LINQ. Bookmark the permalink.