Contains with predicate returned false : Contains « LINQ « C# / C Sharp






Contains with predicate returned false

 

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

public class MainClass {
    public static void Main() {
        string[] presidents = {"A", "H", "a", "H", "over", "Jack"};
        bool contains = presidents.Contains("G");
        Console.WriteLine(contains);
    }
}

 








Related examples in the same category

1.Contains with string value
2.Contains with string value and IEqualityComparer
3.Use Contains to check the existance of an element
4.Contains with IEqualityComparer
5.A query to extract strings containing the letter "a", sorted by length and converted to uppercase