2022.02.01 / Microsoft Visual Studio 2022 / C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _01._09_快捷按键
{
internal class Program
{
static void Main(string[] args)
{
// 常用的快捷键:
// 1、自动对齐:Ctrl+K+D
// 作用:C#对每行代码的缩进和对齐没有强制要求,
// 但是为了方便阅读,建议采用系统自定的对齐规则。
// 2、注释所选代码:Ctrl+K+C
// 作用:将所选中的代码以单行注释方式处理。
// 每行代码前端自动添加“//”,使代码失效。
// 3、取消注释所选代码:Ctrl+K+U
// 作用:取消所选中代码的注释方式。
// 自动删除每行代码前端的“//”,使代码生效。
// 4、快速保存:Ctrl+S
// 作用:将当前代码文件保存。
// 保存前需注意检查文件名和保存路径。
// 5、撤消操作:Ctrl+Z
// 作用:撤消最后一次生效的编辑动作,还原回前一次生效的状态。
}
}
}