StyleCop mandates a particular sort order for the contents of C# files. For example, fields should be declared before methods and public declarations should come before private ones.

It would be useful to have a Visual Studio extension to move these things into that order automatically.

Does a good extension exist for this (I've found CodeSorter, but the feedback suggests it's very buggy)? Or are there any extensions or shortcuts that make it less painful to reorder this content manually?

link|improve this question

Sounds like a make-work silly rule if you ask me. – C Johnson Dec 3 '11 at 22:03
I believe the idea is to present information in decreasing order of importance so that someone reading it (i.e. intending to use it) can get to grips with it more quickly. – Matthew Strawbridge Dec 22 '11 at 9:10
feedback

3 Answers

up vote 3 down vote accepted

You can try with Regionerate :

Regionerate is an automated tool which helps you to preserve your code's layout over time. Regionerate lets you define regions in your code and determine the way members (fields, methods, properties etc.) should be placed inside them. Regionerate is a zero-friction tool - when setting up, you can choose a Code Layout (the way you want your code to look) or just use the default Code Layout. From that moment on, Regionerate will make sure your code follows that Code Layout.

link|improve this answer
feedback

ReSharper can do this. It has a "Type Members Layout" feature that allows you to use either a default set of rules, or to define your own.

link|improve this answer
After some searching I found this blog post that gives a set of ReSharper rules for this very scenario. – Matthew Strawbridge Dec 4 '11 at 15:26
feedback

I use ReSharper and their Type Member Layout. See my post for more details.

link|improve this answer
Thanks. I'll be referring back to this if and when I finally bite the bullet and get ReSharper (I still haven't decided between it and CodeRush despite trialling both). – Matthew Strawbridge Dec 22 '11 at 9:12
feedback

Your Answer

 
or
required, but never shown

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