在 C# 中清除列表


首先,创建一个列表 −

List<int> myList = new List<int>();
myList.Add(45);
myList.Add(77);

现在,要清除以上的列表,使用了 Clear() −

myList.Clear();

以下是完整的代码 −

示例

 在线演示

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      List<int> myList = new List<int>();
      myList.Add(45);
      myList.Add(77);
      Console.WriteLine("Elements: "+myList.Count);
      myList.Clear();
      Console.WriteLine("Elements after using clear: "+myList.Count);
   }
}

输出

Elements: 2
Elements after using clear: 0

更新日期:2020 年 6 月 22 日

381 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始
广告