我想知道Visual Studio(最好是2012年)是否有办法以这样的方式格式化代码,以便将Box Selection and Multi-line-editing应用到您的代码中。
例如:
一个改变这一段代码的快捷键:
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; }
}
答案 0 :(得分:1)
您可以将Code Alignment extension用于Visual Studio 2012。
我没有尝试过,但似乎做了你想做的事:Align by space feature