C#中的註釋符及快捷鍵
阿新 • • 發佈:2017-10-11
write ace name 第一個 快速註釋 之間 控制 智能 文檔
1、註釋符的作用
1)、註銷
2)、解釋
2、c#的3種註釋符
1)、單行註釋 //
2)、多行註釋 /*要註釋的內容*/
3)、文檔註釋 /// 多用來解釋類或者方法
namespace _01註釋符的使用 { class Program { static void Main(string[] args) { //這行代碼的作用是將Hello World打印到控制臺當中 // Console.WriteLine("Hello World"); //這行代碼的作用是暫停當前這個程序// Console.ReadKey(); /* Console.WriteLine("Hello World"); Console.WriteLine("Hello World"); Console.WriteLine("Hello World"); Console.WriteLine("Hello World"); Console.WriteLine("Hello World"); Console.WriteLine("Hello World"); Console.WriteLine("Hello World"); Console.WriteLine("Hello World");*/ } /// <summary> /// 這個方法的作用就是求兩個整數之間的最大值 /// </summary> /// <param name="n1">第一個整數</param> /// <param name="n2">第二個整數</param> /// <returns>返回比較大的那個數字</returns> public static int GetMax(int n1, int n2) {return n1 > n2 ? n1 : n2; } }
3、VS中常用的快捷鍵
Ctrl + k +d 快速對齊代碼
Ctrl + z 撤銷
Ctrl + s 保存
Ctrl + j 快速彈出智能提示
Shift + End、Shift + Home、Shift + 上下左右 選中單行內容
Ctrl + k + c 快速註釋選中內容
Ctrl + k + u 快速取消註選中的註釋內容
Alt + Shift +F10 添加命名空間
F1 轉到幫助
F12 查看類型定義
#region ...#endregion 折疊代碼
4、波浪線
1)、如果你的代碼中出現了紅色的波浪線,意味著你的代碼中出現了語法錯誤。
2)、如果你的代碼中出現了綠色的波浪線,說明你的代碼語法並沒有錯誤,只不過提示你有可能會出現錯誤,但是不一定會出現錯誤。警告線
C#中的註釋符及快捷鍵