我正在使用 Resharper 4.5,并且在编写数组或对象初始化程序时需要自定义大括号格式。Resharper 支持一些样式:
牛羚风格:
int[] array = new int[]
{
1, 2, 3
}
但是我需要:
int[] array = new int[]
{
1, 2, 3
}
有没有办法自定义这个模板?