如何在C#中将列表初始化为空列表?

如何在C#中将列表初始化为空列表?

要在C#中将列表初始化为空列表,可以像下面的语句一样设置它,不包含任何元素即可−

List<string> list = new List<string>();

现在,使用Any()方法来检查列表是否为空。

bool chk = !list.Any();

让我们来看看完整的代码:

示例

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!");
      }
   }
}

输出

List is Empty!

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程