C# 中的空列表


C# 中存在空列表。要检查列表是否为空,请根据空值文字检查它们。如以下所示设置空值 −

List<string> myList = null;

现在,要检查空值,请使用如下所示的等式运算符 −

myList == null;

以下是一个示例 −

示例

 现场演示

using System;
using System.Collections.Generic;
using System.Linq;
public class Demo {
   public static void Main() {
      List<string> myList = null;
      // checking for null
      Console.WriteLine(myList == null);
   }
}

输出

True

更新于:2020 年 6 月 22 日

2K+ 浏览次数

启动您的 职业

完成课程,获得认证

开始
广告