메모
[c#] Hashtable 분해
네코냥이
2014. 3. 10. 10:21
Hashtable openWith = new Hashtable();
foreach( DictionaryEntry de in openWith )
{
Console.WriteLine("Key = {0}, Value = {1}", de.Key, de.Value);
}