Resharper Tip/Trick... is this possible?
Posted
by Perpetualcoder
on Stack Overflow
See other posts from Stack Overflow
or by Perpetualcoder
Published on 2010-02-04T22:31:13Z
Indexed on
2010/04/27
3:23 UTC
Read the original article
Hit count: 395
How can I have Resharper convert code file like
using Stuff;
using Stuff.MoreStuff;
using Stuff.MoreStuff.EvenMoreStuff;
namespace CoolStuff
{
// src code
}
To
namespace CoolStuff
{
#region Using Statements
using Stuff;
using Stuff.MoreStuff;
using Stuff.MoreStuff.EvenMoreStuff;
#endregion
// src code
}
I just like it this way, it "I think" is in one of the stylecop rules too. I would appreciate any kind of help.
Thanks
© Stack Overflow or respective owner