मान लें कि पूर्णांक नोड्स के साथ हमारी LinkedList निम्नलिखित है।
int [] num = {29, 40, 67, 89, 198, 234}; LinkedList<int> myList = new LinkedList<int>(num);
अब, यदि आप सूची से पहले तत्व को हटाना चाहते हैं, तो RemoveFirst () विधि का उपयोग करें।
myList.RemoveFirst();
उदाहरण
using System; using System.Collections.Generic; class Demo { static void Main() { int [] num = {29, 40, 67, 89, 198, 234}; LinkedList<int> myList = new LinkedList<int>(num); foreach (var n in myList) { Console.WriteLine(n); } // removing first node myList.RemoveFirst(); Console.WriteLine("LinkedList after removing the first node..."); foreach (var n in myList) { Console.WriteLine(n); } } }
आउटपुट
29 40 67 89 198 234 LinkedList after removing the first node... 40 67 89 198 234