FirstOrDefault with a Not Found Element : FirstOrDefault « LINQ « C# / C Sharp






FirstOrDefault with a Not Found Element

 

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"};
        string name = presidents.Take(0).FirstOrDefault();
        Console.WriteLine(name == null ? "NULL" : name);
    }
}

 








Related examples in the same category

1.use FirstOrDefault
2.FirstOrDefault: get the first or the default
3.FirstOrDefault returns null when an Element Is Found
4.FirstOrDefault with string operator
5.FirstOrDefault with Condition