using System; using STL; namespace LinkedListTest { class MainClass { public static void Main(string[] args) { TestPushFront(); } static void TestPushFront() { Console.WriteLine("Testing push front."); LinkedList list = new LinkedList(); // Add the values to the list. for (int i = 0; i < 10; ++i) { list.PushFront(i); } for (LinkedListIterator it = list.Begin; it != list.End; it.Next()) { Console.Write(it.Value); } } } }