2009年8月7日金曜日

C#で連想配列

Hashtableってのを使うようだ

using System.Collections;
private void Test01()
{
Hashtable ht = new Hashtable();
ht["Sunday"] = "日曜日";
ht["Monday"] = "月曜日";
}


http://www.atmarkit.co.jp/fdotnet/dotnettips/125hashtable/hashtable.html

0 件のコメント: