2013-04-02 130 views
0

我想知道在Visual Studio(最好是2012)中是否有一種方法來對代碼進行格式化,以便將代碼應用於Box Selection and Multi-line-editing變得非常簡單。如何在Visual Studio 2012中對代碼進行格式化

例如:

該轉換代碼這個疙瘩shortkey:

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; } 
} 

回答

相關問題