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); // this makes a list empty 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