up vote 24 down vote favorite
15
share [g+] share [fb]

I'm using Resharper 4.5 and I need custom formatting of braces when writing an array or object initializer. Resharper supports some styles, closing of what I need is this:

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?

link|improve this question

feedback

3 Answers

up vote 54 down vote accepted

You can customize ReSharper to do just that, you'll need to do the following (All in ReSharper -> Options -> C# -> Formatting Style):

  1. In Braces Layout, set Array and object initializer to At Next line (BSD Style).
  2. In Other, make sure that Continuous line indent multiplier is set to 1.
  3. In Other, make sure that Indent array, object and collection initializer block is unchecked.

You should get the style you want.

link|improve this answer
1  
+1 you are right - 3. is the important step – tanascius May 5 '09 at 9:17
Too bad someone can't mark this as the correct answer because it obviously is. – jeremcc Jun 19 '09 at 21:45
No, this isn't a solution. This setting doesn't put the first brace on the next line. – brianary Sep 16 '09 at 17:33
1  
This needs a step 4: In ''Other'', make sure that 'Indent array, object and collection initializer block' is ''unchecked''. – brianary Sep 16 '09 at 17:39
1  
I could kiss you. If I could upvote multiple times at the expense of my own rep, I would. – Andy_Vulhop Mar 24 '11 at 16:44
show 4 more comments
feedback

This article seems to have an answer similar to what you're looking for:

ReSharper: Fixing array and object initializer indentation

link|improve this answer
Thanks for mentioning the article :) – hmemcpy May 4 '09 at 9:06
feedback

as far as i know you cant, Resharper comes with predefined styles, but maybe if you create your own live template and set it the way you want it will works.

hope this helps.

link|improve this answer
it seems you really can't....live template does something else though, has no effect on code formatting. – Hadi Eskandari Apr 16 '09 at 5:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.