Visual Studio有一個工具欄按鈕/鍵盤快捷鍵/菜單項,comments out selected lines of C# code使用//
。快速評論/ *在Visual Studio中選擇C#代碼* /(不是//整行)
是否有相當於僅僅是選定的代碼使用/* ... */
?
例如
鑑於此代碼
string s = "hello";
Console.WriteLine(s + " world");
如果選擇+ "world"
,打按Ctrl + ķ,按Ctrl + Ç然後你
string s = "hello";
//Console.WriteLine(s + " world");
結束了。然而,我想要
string s = "hello";
Console.WriteLine(s /*+ " world"*/);
這對於我在對現有代碼庫進行一些實驗性和臨時性修改時修復一些錯誤很有用。
我認爲這是爲了告訴你/ * * /是EV1L! (它不是) – jv42
萬歲/ * */ – kenny