DefaultIfEmpty Demo : DefaultIfEmpty « LINQ « C# / C Sharp






DefaultIfEmpty Demo

 

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.Where(n => n.Equals("H")).DefaultIfEmpty("Missing").First(); Console.WriteLine(name);

    }
}

 








Related examples in the same category

1.Without Using DefaultIfEmpty
2.Using DefaultIfEmpty in Where clause