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