📄 csharp7.cs
字号:
using System;
using System.Collections;
class Test
{
public static void Main(string[] args)
{
Hashtable ht = new Hashtable();
ht.Add("feidao","飞刀");
ht.Add("yahao","亚豪");
ht.Add("xuankong","大风");
ht.Add("zsir","逍遥小子");
ht.Add("buding","布丁");
foreach(string htKey in ht.Keys)
{
Console.WriteLine("工作室成员ID:{0}\t中文网名:{1}",htKey,ht[htKey].ToString());
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -