FirstOrDefault with a Not Found Element : FirstOrDefault : LINQ C# Source Code


Custom Search

C# Source Code » LINQ » FirstOrDefault »

 

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);
    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo LINQ
» FirstOrDefault