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