Computer >> Máy Tính >  >> Lập trình >> C#

Làm thế nào để làm trống một danh sách C #?

Để làm trống danh sách C #, hãy sử dụng phương thức Clear ().

Đầu tiên, thiết lập một danh sách và thêm các phần tử -

List<string> myList = new List<string>()
{
   "one",
   "two",
   "three",
   "four",
   "five",
   "six"
};

Bây giờ, chúng ta hãy làm trống danh sách -

myList.Clear();

Ví dụ

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);
      // this makes a list empty
      myList.Clear();
      Console.WriteLine("Elements in the list after using Clear() = "+myList.Count);
   }
}

Đầu ra

one
two
three
four
five
six
Elements in the list = 6
Elements in the list after using Clear() = 0