Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using monodevelop on my mac to develop for iPhone. I was wondering if there is a way to change how MD formats C# code? by default it puts the curly braces at the same line as the if which I personally don't like....

share|improve this question

2 Answers

up vote 8 down vote accepted

In the Solution Options dialog, go to Source Code->Code Formatting->C#. These will cascade to the projects in the solution, but you can override it for individual projects if you want.

You can change the defaults for new solutions in the Default Policies dialog, but this will not affect existing solutions.

share|improve this answer
I don't seem to have Source Code in options dialog. I'm using MD on my OSX for MonoTouch. Should I download an addon or something? – Ali Shafai Mar 23 '10 at 22:31
2  
It's in Solution Options, not Preferences. – mhutch Mar 24 '10 at 23:53
Thanks for this! – callisto Oct 26 '12 at 14:59
@mhutch Is there any shortcut for formatting code in Monodevelop as one in VS like Cntrl+K+D – Bhushan Firake Jan 30 at 11:44
On Mac, it's Control-K. Not sure offhand what it is on Window but you can find out in the Keybindings preferences/options panel, and change it if you want. – mhutch Jan 30 at 23:38

You can also create a custom policy, save it to a file, share it with your team (they'll need to import the policy), and then quickly select it from Solution Options.

share|improve this answer

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.