青草幽幽

Hashtable遍历

电脑版发表于:2018/10/11 17:21

Hashtable遍历:

Hashtable hashTable = new Hashtable();
hashTable.Add("小张", "15975234395");
hashTable.Add("小王", "15975234395");
hashTable.Add("小芳", "15975234395");
//遍历键值对
foreach (DictionaryEntry item in hashTable)
{
        Console.WriteLine(item.Key+","+item.Value);
}
//遍历所有Key
foreach (string item in hashTable.Keys)
{
        Console.WriteLine(item);
}

foreach (string item in hashTable.Values)
{
    Console.WriteLine(item);
}


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢