蟲企慨り 朱.. 企 蟲 襴(觚 襷 襴ろ) 蟲~~
襴ろ.. ろ語 一危 血朱 ″螻 豸′ 豺 企 襭蟲譟磯ゼ .
using System;
using System.Collections.Generic;
namespace LinkedList
{
class Program
{
public static void Main(string[] args)
{
LinkedList<String> test = new LinkedList<String>();
test.AddLast("1");
test.AddLast("2");
test.AddLast("3");
test.AddAfter(test.Find("2"), "2.5");
test.Remove("1");
int i = 1;
foreach (String s in test)
{
Console.WriteLine( "襷 襴ろ {0}讌 螳 {1}", i, s);
i++;
}
Console.Write("Press any key to continue . . . ");
Console.ReadKey(true);
}
}
}
/*
襷 襴ろ 1讌 螳 2
襷 襴ろ 2讌 螳 2.5
襷 襴ろ 3讌 螳 3
Press any key to continue . . .
*/