링크: http://ssscool.tistory.com/entry/C-Hashtable-foreach


foreach (DictionaryEntry entry in ht)

TextBox1.AppendText( "키 : " + entry.Key + " 값 : " + entry.Value );










+ Recent posts