标签: c#
我有一个清单:
List<int> MyList = new List<int>();
我在其中添加了10个int值:
for{i=1;i<10;i++} MyList.Add(1);
我可以一次性清空,而不是使用
Remove
RemoveAll
Predicate<(Of <(T>)>)
答案 0 :(得分:15)
MyList.Clear();