सूची में पहला तत्व पॉप करने के लिए, RemoveAt() विधि का उपयोग करें। यह उस तत्व को उस स्थिति से हटा देता है जिसे आप तत्व को हटाना चाहते हैं।
सूची सेट करें
List<string> myList = new List<string>() { "Operating System", "Computer Networks", "Compiler Design" };
अब RemoveAt(0)
. का उपयोग करके पहला तत्व पॉप करेंmyList.RemoveAt(0);
आइए देखें पूरा उदाहरण।
उदाहरण
using System; using System.Collections.Generic; using System.Linq; class Program { static void Main() { List<string> myList = new List<string>() { "Operating System", "Computer Networks", "Compiler Design" }; Console.Write("Initial list..."); foreach (string list in myList) { Console.WriteLine(list); } Console.Write("Removing first element from the list..."); myList.RemoveAt(0); foreach (string list in myList) { Console.WriteLine(list); } } }
आउटपुट
Initial list... Operating System Computer Networks Compiler Design Removing first element from the list... Computer Networks Compiler Design