

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
- Related Questions & Answers
- list empty() function in C++ STL
- How to empty a C# list?
- First Non-Empty String in list in Python
- How to initialize a list to an empty list in C#?
- How to create an empty list in Python?
- How do I empty a list in Java?
- Python | Remove empty tuples from a list
- How to remove an empty string from a list of empty strings in C#?
- Check if a list is not empty in MongoDB?
- How to initialize an empty array list in Kotlin?
- How do you create an empty list in Java?
- How to check if a list is empty in Python?
- List of non-empty tables in all your MySQL databases?
- From a list of IDs with empty and non-empty values, retrieve specific ID records in JavaScript
- How to check if a C# list is empty?
Advertisements