从HashTable密钥创建List <string>?</string>

时间:2010-07-21 08:46:39

标签: c# collections hashtable

嘿,我怎么能尽可能地做到这一点?

谢谢: - )

1 个答案:

答案 0 :(得分:11)

试试这个:

System.Collections.Hashtable ht = new System.Collections.Hashtable();
List<string> list = ht.Keys.Cast<string>().ToList();