Csharp/C Sharp/LINQ/Any

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

Any operator with an string array

 
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
    public static void Main() {
        string[] presidents = {"G", "H", "a", "H", "over", "Jack"};
        bool any = presidents.Any();
        Console.WriteLine(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");
   }
}


Any with false predicate

 
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
    public static void Main() {
        string[] presidents = {"G", "H", "a", "H", "over", "Jack"};
        bool any = presidents.Any(s => s.StartsWith("A"));
        Console.WriteLine(any);
    }
}


Any with string operator

 
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
    public static void Main() {
        string[] presidents = {"G", "H", "a", "H", "over", "Jack"};
        bool any = presidents.Any(s => s.StartsWith("Z"));
        Console.WriteLine(any);
    }
}


Contains, Any return a bool value

 
using System;
using System.Collections.Generic;
using System.Linq;
public class MainClass {
    public static void Main() {
        int[] numbers = { 10, 9, 8, 7, 6 };
        bool hasTheNumberNine = numbers.Contains(9);          // true
        bool hasMoreThanZeroElements = numbers.Any();          // true
        bool hasAnOddElement = numbers.Any(n => n % 2 == 1);  // true
    }
}


Use Quantifiers: Any

 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class MainClass {
    public static void Main() {
        string[] words = { "bei", "rie", "rei", "field" };
        bool iAfterE = words.Any(w => w.Contains("ei"));
        Console.WriteLine("There is a word that contains in the list that contains "ei": {0}", iAfterE);
    }
}