如何清空C#列表?
要清空C#列表,请使用Clear()方法。
首先,设置一个列表并添加元素-
List<string> myList = new List<string>()
{
"one",
"two",
"three",
"four",
"five",
"six"
};现在,让我们清空列表-
myList.Clear();
示例
using System;
using System.Collections.Generic;
public class Program {
public static void Main() {
List<string> myList = new List<string>() {
"one",
"two",
"three",
"four",
"five",
"six"
};
foreach(string str in myList) {
Console.WriteLine(str);
}
Console.WriteLine("Elements in the list = "+myList.Count);
//这使列表为空
myList.Clear();
Console.WriteLine("Elements in the list after using Clear() = "+myList.Count);
}
}输出结果
one two three four five six Elements in the list = 6 Elements in the list after using Clear() = 0
热门推荐
10 给医生简短新年祝福语
11 新年探亲祝福语简短精辟
12 叶海燕老师祝福语简短
13 班级群毕业祝福语简短
14 租房明天搬家祝福语简短
15 同事调动的祝福语简短
16 姥爷生日祝福语简短精辟
17 祝女儿出嫁简短祝福语
18 姨父生日祝福语简短精辟