创建条件语句或方法时,IDE 会跳转到:
if (true)
{
//code here
}
但我更喜欢以下更紧凑的风格(并且经常在教科书中使用)
if (true) {
//code here
}
Visual Studio 中是否有更改默认样式的设置?
创建条件语句或方法时,IDE 会跳转到:
if (true)
{
//code here
}
但我更喜欢以下更紧凑的风格(并且经常在教科书中使用)
if (true) {
//code here
}
Visual Studio 中是否有更改默认样式的设置?