Knowledge

Hashtable foreach

네코냥이 2018. 5. 17. 10:36



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


foreach (DictionaryEntry entry in ht)

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