Rearrange definitions to top of class?

  • Thread starter Thread starter lallous
  • Start date Start date
L

lallous

Hello

I am relatively new to C# development.

After having developed my first application, I realized that the data
definitions and code definition is somehow intermixed here and there.

Is there is a way to automatically move all the data definitions to the top
of the class?

Regards,
Elias
 
Hi,

Not that I know of, and I think that it would make sense, especially when
you use a code generator and you want to reorder it according to your
criteria and not of the tool
 
"lallous" <[email protected]> a écrit dans le message de (e-mail address removed)...

| I am relatively new to C# development.
|
| After having developed my first application, I realized that the data
| definitions and code definition is somehow intermixed here and there.
|
| Is there is a way to automatically move all the data definitions to the
top
| of the class?

Take a look at ModelMaker CodeExplorer, it does all sorts of code management
atricks including sorting and refactoring.

http://www.modelmakertools.com/code-explorer-vs/index.html

Joanna
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top