System.Collections.Generic নেমস্পেস লিঙ্কডলিস্টের জন্য C# এ উপলব্ধ। LinkedList
C# LinkedList
এখানে একটি উদাহরণ -
উদাহরণ
using System;
using System.Collections.Generic;
class Demo {
static void Main() {
LinkedList < string > l = new LinkedList < string > ();
l.AddLast("one");
l.AddLast("two");
l.AddLast("three");
foreach(var ele in l) {
Console.WriteLine(ele);
}
}
} আউটপুট
one two three