平時常用的Visual Studio操作技巧,持續更新中……

來源:互聯網
上載者:User

標籤:style   color   os   io   使用   ar   檔案   sp   on   

移除未使用的命名空間
--方法1:右鍵--"組織using"--"移除未使用的using"
--方法2:Shift+F10--"O"—"R"

 

格式化當前文檔,讓文檔排列齊整
--ctrl + K, D

 

注釋
--ctrl + K, C

 

取消注釋
--ctrl + K, U

 

滿屏/取消滿屏
--alt + shift + Enter

 

產生當前項目
--shift + F6

 

產生解決方案
--F6

 

顯示輸出視窗
--ctrl + W, O

 

顯示"附加到進程"視窗
--ctrl + alt + P

 

展開/摺疊當前節點
--把游標放到節點之內,ctrl + M, M

 

摺疊所有節點
--ctrl + M, O

 

展開所有節點
--ctrl + M, L

 

開啟命令視窗
--方法1:"視圖"--"其它視窗"--"命令視窗"
--方法2:ctrl + W, A

 

清空命令視窗
--輸入:cls

 

彈出"開啟檔案"對話方塊
--方法1:輸入File.OpenFile
--方法2:輸入of
--方法3:"檔案"--"開啟"--"w檔案"
--方法4:ctrl + O

 

使用命令視窗,在Visual Studio中開啟某個檔案
--輸入:File.OpenFile + 空格 + 完整檔案路徑

 

開啟調試"即時視窗"
--方法1:ctrl + W, A--輸入immed--在"即時視窗"輸入>cmd返回"命令視窗"
--方法2:"調試"--"視窗"--"即時"

 

使用"即時視窗"測試方法的傳回值

        private static int Add(int value1, int value2)
        {
            int res = value1 + value2;
            return res;
        }

--輸入:?Add(1,2)

 

使用"即時視窗"配合斷點調試

    class Program
    {
        static void Main(string[] args)
        {
            int sum = Add(1, 2);
            Console.WriteLine(sum);
            Console.ReadKey();
        }
        private static int Add(int value1, int value2)
        {
            int res = value1 + value2;
            return res;
        }
    }

→把斷點打在Add()方法所在行的下面一行
→在"Debug"模式下點擊"啟動"
→開啟"即時視窗"
→輸入:?value1,可查看value1的值
→輸入:?value1==1,可推斷value1的值
→輸入:?value1=10,改變value1的值

 

跳轉到某行
--ctrl + G

 

平時常用的Visual Studio操作技巧,持續更新中……

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.