예제 #1
0
        public static void Main(string[] args)
        {
            LinkedList<int> ll = new LinkedList<int>();

            for (int i = 0; i < 10; i++) {
                ll.AddE(i);
                ll.AddF(i);
            }

            while (ll.Size() > 0) {
                Console.WriteLine("{0}", ll.GetE());
            }
        }