I'm using Resharper 4.5 and I need custom formatting of braces when writing an array or object initializer. Resharper supports some styles:
Gnu Style:
int[] array = new int[]
{
1, 2, 3
}
but I need:
int[] array = new int[]
{
1, 2, 3
}
Is there any way to customize this templates?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…