Reporter | Jeremy Lew (jlew@liquidmachines.com) |
---|---|
Created | Feb 13, 2008 4:57:00 PM |
Updated | Apr 12, 2018 7:24:48 PM |
Subsystem | Code Style - Cleanup |
Assignee | Razmik Seysyan (razmik) |
Priority | Normal |
State | Open |
Type | Feature |
Fix version | Backlog |
Affected versions | No Affected versions |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
In C#, you can declare namespaces like so:
namespace a.b.c
{
}
...or, evivalently:
namespace a
{
namespace b
{
namespace c
{
}
}
}
There's no way that I know of to easily convert one form to the other. I'd
like to see this as a Code Formatting preference, as it is a pain to do this
manually.
namespace a.b.c
{
}
...or, evivalently:
namespace a
{
namespace b
{
namespace c
{
}
}
}
There's no way that I know of to easily convert one form to the other. I'd
like to see this as a Code Formatting preference, as it is a pain to do this
manually.