একটি 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