Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 115 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.

share|improve this answer
1  
+1 you are right - 3. is the important step – tanascius May 5 '09 at 9:17
1  
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
3  
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
2  
I love you more than my partner and about the same as my cats. Thank you. – glosrob Jan 3 at 11:22
show 8 more comments

As of R#7.1 some Option attributes were changed:

  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.

like in older versions and

  1. In Other, at Align Multiline Constructs make sure that Array, object and collection initializer is unchecked.
share|improve this answer

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

ReSharper: Fixing array and object initializer indentation

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

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.

share|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
and this call for downvote ? – DevMania Feb 7 at 22:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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