我想知道在 Visual Studio(最好是 2012 年)中是否有一种方法来格式化代码,以便将框选择和多行编辑应用到您的代码变得非常容易。
例如:
转换这块代码的快捷键:
public class Example
{
public bool IsDefault { get; set; }
public string Description { get; set; }
public string Link { get; set; }
public short Order { get; set; }
public byte Status { get; set; }
}
变成这样:
public class Example {
public bool IsDefault { get; set; }
public string Description { get; set; }
public string Link { get; set; }
public short Order { get; set; }
public byte Status { get; set; }
}