我一直使用CTRL + K + D来格式化我的代码,我觉得它很好。但有时我需要以另一种方式格式化我的代码,例如在枚举中:
[Flags]
public enum OrdklasseTyper : long
{
[Display(Name = "x")]
Udefineret = 0L,
[Display(Name = "A")]
Adjektiv = 1L << 0,
[Display(Name = "D")]
Adverbium = 1L << 1,
....
}
因为我在枚举中有大约60个值,我更愿意写它:
[Flags]
public enum OrdklasseTyper : long
{
[Display(Name = "x")] Udefineret = 0L,
[Display(Name = "A")] Adjektiv = 1L << 0,
[Display(Name = "D")] Adverbium = 1L << 1,
....
}
因为它使它更具可读性。 CTRL + K + D会将其更改回上例中显示的格式。
是否有相当于 #pragma warning disable / restore 的功能,可以在您自己选择的代码的某些部分禁用CTRL + K + D?