

- 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
How to initialize a list to an empty list in C#?
To initialize a list to an empty list in C#, set it like the following statement without any elements −
List<string> list = new List<string>();
Now, use the Any() method to check whether the list is empty or not −
bool chk = !list.Any();
Let us see the complete code −
Example
using System; using System.Collections.Generic; using System.Linq; public class Program { public static void Main() { // empty list List<string> list = new List<string>(); // check for empty list bool chk = !list.Any(); if(chk) { Console.WriteLine("List is Empty!"); } else { Console.WriteLine("List isn't Empty!"); } } }
Output
List is Empty!
- Related Questions & Answers
- How to initialize an empty array list in Kotlin?
- How to create an empty list in Python?
- How to empty a C# list?
- Java Program to Initialize a List
- How to initialize an empty DateTime in C#
- How to initialize a dictionary to an empty dictionary in C#?
- How to initialize a string to an empty string in C#?
- How to initialize a tuple to an empty tuple in C#?
- How to declare and initialize a list in C#?
- How to remove an empty string from a list of empty strings in C#?
- How to easily initialize a list of Tuples in C#?
- How to initialize List<T> in Kotlin?
- Python - Ways to initialize list with alphabets
- How to check if a C# list is empty?
- How do you create an empty list in Java?
Advertisements