
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Empty List in C#
Set a list that has zero elements −
List<string> myList = new List<string>();
Now check whether the list is empty or null −
Console.WriteLine(myList == null);
Above, returns “False” i.e. the list is not null - the list is empty.
Let us see the complete code −
Example
using System; using System.Collections.Generic; using System.Linq; public class Demo { public static void Main() { List<string> myList = new List<string>(); // returns false i.e. an empty list (not a null list) Console.WriteLine(myList == null); } }
Output
False
Advertisements