叫我挑剔,但我更喜欢我的每个方法在它们之间有一个换行符。是否有任何自动方法来配置 VS 以修剪方法之间的换行符数量。例如
public void AMethod()
{
//code
}
//one line break
public void AnotherMethod()
{
//code
}
通常通过各种因素,我最终会在方法之间产生几条线,在重构过程中说。
public void AMethod()
{
//code
}
//one line break
//oh noes, more whitespace
//and a third one :s
public void AnotherMethod()
{
//code
}
有没有办法将方法之间的空间缩小到 1 行(类似于 CTRL+E+D)?