vote up 4 vote down star
5

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?

flag

3 Answers

vote up 13 vote down check

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|flag
+1 you are right - 3. is the important step – tanascius May 5 at 9:17
Too bad someone can't mark this as the correct answer because it obviously is. – codeflunky Jun 19 at 21:45
No, this isn't a solution. This setting doesn't put the first brace on the next line. – brianary Sep 16 at 17:33
This needs a step 4: In ''Other'', make sure that 'Indent array, object and collection initializer block' is ''unchecked''. – brianary Sep 16 at 17:39
vote up 1 vote down

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

ReSharper: Fixing array and object initializer indentation

link|flag
Thanks for mentioning the article :) – hmemcpy May 4 at 9:06
vote up 0 vote down

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|flag
it seems you really can't....live template does something else though, has no effect on code formatting. – Hadi Eskandari Apr 16 at 5:35

Your Answer

Get an OpenID
or

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