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