?? program.cs
字號(hào):
using System;
using System.Collections.Generic;
using System.Text;
namespace Example9_44 {
class Program {
static void Main(string[] args) {
Dictionary<string, string> myDic = new Dictionary<string, string>(5);
Console.WriteLine(myDic.Count);
myDic.Add("Hi", "你好");
myDic.Add("Book", "書");
myDic.Add("Microsoft", "微軟");
myDic.Add("Code", "代碼");
myDic.Add("Read", "讀");
myDic.Add("Look", "看");
Console.WriteLine(myDic.Count);
myDic.Remove("Hi");
Console.WriteLine(myDic.Count);
Console.ReadLine();
}
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -