首页 > 编程语言 >C#中遍历Hashtable的4种方法

C#中遍历Hashtable的4种方法

时间:2024-12-31 14:09:50浏览次数:5  
标签:遍历 Console C# ------------- Hashtable WriteLine hashtable

C#中遍历Hashtable的4种方法| Id | Title | DateAdded | SourceUrl | PostType | Body | BlogId | Description | DateUpdated | IsMarkdown | EntryName | CreatedTime | IsActive | AutoDesc | AccessPermission |

| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------|
| 16299266| C#中遍历Hashtable的4种方法| 2022-05-22T22:11:00| | BlogPost|

using System;
using System.Collections;
   
namespace HashtableExample
{
   class Program
   {
     static Hashtable hashtable = new Hashtable();
     static void Main( string [] args)
     {
       hashtable.Add( "first" , "Beijing" );
       hashtable.Add( "second" , "Shanghai" );
       hashtable.Add( "third" , "Hangzhou" );
       hashtable.Add( "forth" , "Nanjing" );
   
       //遍历方法一:遍历哈希表中的键
       foreach ( string key in hashtable.Keys)
       {
         Console.WriteLine(hashtable[key]);
       }
       Console.WriteLine( "--------------------" );
   
       //遍历方法二:遍历哈希表中的值
       foreach ( string value in hashtable.Values)
       {
         Console.WriteLine(value);
       }
       Console.WriteLine( "--------------------" );
   
       //遍历方法三:遍历哈希表中的键值
       foreach (DictionaryEntry de in hashtable)
       {
         Console.WriteLine(de.Value);
       }
       Console.WriteLine( "--------------------" );
   
       //遍历方法四:遍历哈希表中的键值
       IDictionaryEnumerator myEnumerator = hashtable.GetEnumerator();
       while (myEnumerator.MoveNext())
       {
         Console.WriteLine(hashtable[myEnumerator.Key]);
       }
     }
   }
}

 

| 648658| | 2022-05-22T22:11:00| false| | 2022-05-22T22:10:39.437| true| using System; using System.Collections; namespace HashtableExample { class Program { static Hashtable hashtable = new Hashtable(); static void Main( s| Anonymous|

标签:遍历,Console,C#,-------------,Hashtable,WriteLine,hashtable
From: https://www.cnblogs.com/ralphlauren/p/18621190

相关文章

  • c#使用ShellExecute
    c#使用ShellExecute|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|--......
  • C#時間戳轉日期 互轉
    C#時間戳轉日期互轉|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|----......
  • C# 获取 appSettings 公共类
    C#获取appSettings公共类|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|------------......
  • C# 定时任务
    C#定时任务|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|------------......
  • Dictionary 添加重复的键值对
    Dictionary添加重复的键值对|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-----------......
  • C生成曲线BMP
    C生成曲线BMP|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|-----------......
  • centos7 下 nginx 启动,关闭,重启配置 -
    centos7下nginx启动,关闭,重启配置-|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|---......
  • JavaSpring AI与阿里云通义大模型的集成使用Java Data Science Library(JDSL)进行数据处
    前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站学习总结1、掌握JAVA入门到进阶知识(持续写作中……)2、学会Oracle数据库入门到入土用法(创作中……)3、手把手教你开发炫酷的vbs脚本制作(完善中……)4、牛逼哄哄的IDEA......
  • CTF入门教程(非常详细)从零基础入门到竞赛,看这一篇就够了!
    目录一、CTF简介二、CTF竞赛模式三、CTF各大题型简介四、CTF学习路线4.1、初期1、html+css+js(2-3天)2、apache+php(4-5天)3、mysql(2-3天)4、python(2-3天)5、burpsuite(1-2天)4.2、中期1、SQL注入(7-8天)2、文件上传(7-8天)3、其他漏洞(14-15天)4.3、后期五、CTF学......
  • 2024.12.30 由于不会制表痛失一份工作,学习excel制表
    单元格格式可以用来切换其中内容的格式,小技巧,数值右对齐,文字左对齐单元格内换行输出使用Alt+Enter在>数据->分列中可以将某个单元格中的数据分成不同的列1.随机函数rand()返回一个0-1之间的数字,且图表每次更新都会进行随机randbetween(low,high)返回一个low与high之间的任一整......