top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to check if List is Empty using LINQ in C#?

0 votes
406 views
How to check if List is Empty using LINQ in C#?
posted May 13, 2016 by Sathaybama

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
using System;

using System.Collections.Generic;

using System.Data;

using System.Linq;

namespace AbundantCode

{

internal class Program

{

//How to check if List is Empty using LINQ in C# ?

private static void Main(string[] args)

{

List<Employee> employees = new List<Employee>()

{

new Employee { EmpID = 1 , Name ="Martin"},

new Employee { EmpID = 2 , Name ="Peter"},

new Employee { EmpID = 3 , Name ="Michael"}

};

//using Any() method

var ExistsAny = employees.Any(a => a.EmpID == 1);

//using count method

var ExistsCount = employees.Count(a => a.EmpID == 1)>0;

Console.ReadLine();

}

}

public class Employee

{

public string Name { get; set; }

public int EmpID { get; set; }

}

}
answer May 13, 2016 by Shivaranjini
...