kevinmiles / dxcorecommunityplugins

Automatically exported from code.google.com/p/dxcorecommunityplugins
0 stars 0 forks source link

Region is broken when using Move using to namespace #130

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Sample code:

{{{
#region Usings
using X;
using Y;
#endregion

namespace Z
{
    class ABC { }
}
}}}

When I move the namespace i get

{{{
#endregion

namespace Z
{
    #region Usings
    using X;
    using Y;

    class ABC { }
}
}}}

instead of 

{{{
namespace Z
{
    #region Usings
    using X;
    using Y;
    #endregion

    class ABC { }
}
}}}

Original issue reported on code.google.com by krzysztof.blacha on 22 Mar 2012 at 8:50

GoogleCodeExporter commented 8 years ago
I believe build 2181 will fix this issue.

Original comment by RoryBec...@gmail.com on 22 Mar 2012 at 9:25

GoogleCodeExporter commented 8 years ago
I believe build 2181 will fix this issue.

Original comment by RoryBec...@gmail.com on 22 Mar 2012 at 9:25