सबसे पहले, एक लिंक्डलिस्ट घोषित करें और नोड्स जोड़ें।
int [] num = {92, 98, 110, 130, 145, 170, 230, 240, 250, 300, 330}; LinkedList<int> myList = new LinkedList<int>(num);
RemoveLast() विधि का उपयोग करके LinkedList से अंतिम नोड निकालें।
myList.RemoveLast();
उदाहरण
using System; using System.Collections.Generic; class Demo { static void Main() { int [] num = {92, 98, 110, 130, 145, 170, 230, 240, 250, 300, 330}; LinkedList<int> myList = new LinkedList<int>(num); foreach (var n in myList) { Console.WriteLine(n); } // removing last node myList.RemoveLast(); Console.WriteLine("LinkedList after removing the last node..."); foreach (var n in myList) { Console.WriteLine(n); } } }
आउटपुट
92 98 110 130 145 170 230 240 250 300 330 LinkedList after removing the last node... 92 98 110 130 145 170 230 240 250 300