欢迎来到天天文库
浏览记录
ID:20074172
大小:29.00 KB
页数:5页
时间:2018-10-09
《利用函数实现表格式的输出形式》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、Console.Title="用foreach语句处理集合";//使用Hashtable类创建一个哈希表对象,Hashtable类位于命名空间System.Collections中HashtablecityHash=newHashtable();//调用Add方法将带有指定键和值的元素添加到哈希表中cityHash.Add("010","北京");cityHash.Add("021","上海");cityHash.Add("022","天津");//可以看出的是哈希表中的数组的遍历方法,我们额外地增加一个key
2、Console.WriteLine("电话区号t城市");foreach(stringtelephoneDistrictNumberincityHash.Keys){Console.WriteLine("{0}tt{1}",telephoneDistrictNumber,cityHash[telephoneDistrictNumber]);}Console.WriteLine();Console.ReadKey();
此文档下载收益归作者所有