2.C#中的常用快捷键

时间:2022-12-24 10:14:50
快速对齐代码:
Ctrl+K+D:  快速对齐代码   (如果代码语法错误,就不能使用)
Ctrl+Z:  撤销
Ctrl+S:保存   没事就Ctrl+S一下,防止因为电脑断电,代码全部丢失
Ctrl+J:快速智能提示
Shift+End: 从当前光标,一直选中至当前行的行尾
Shift+Home :从当前光标所在处,一直选中至当前行首  
Ctrl+K+C:注释所选代码
Ctrl+K+U:取消对所选代码的注释
F1:转到帮助文档
折叠冗余代码:#Region和#EndRegion    Ctrl+K+S

折叠冗余代码:
   
   
   
  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. #region 这些代码是没有用的代码,可是我又不想删除
  6. //Console.WriteLine("hello world");
  7. //Console.WriteLine("hello world");
  8. //Console.WriteLine("hello world");
  9. //Console.WriteLine("hello world");
  10. //Console.WriteLine("hello world");
  11. //Console.WriteLine("hello world");
  12. //Console.WriteLine("hello world");
  13. //Console.WriteLine("hello world");
  14. //Console.WriteLine("hello world");
  15. //Console.WriteLine("hello world");
  16. //Console.WriteLine("hello world");
  17. //Console.WriteLine("hello world");
  18. //Console.WriteLine("hello world");
  19. //Console.WriteLine("hello world");
  20. //Console.WriteLine("hello world");
  21. //Console.WriteLine("hello world");
  22. #endregion
  23. }
  24. }