Visual Studio 2010 tool to order members inside #region
Posted
by
Michael Swan
on Super User
See other posts from Super User
or by Michael Swan
Published on 2012-06-01T09:48:54Z
Indexed on
2012/06/01
10:44 UTC
Read the original article
Hit count: 219
visual-studio-2010
There exist a tool for Visual studio which order alphabetically the members grouped by #region ?
means
#region
A1() ...
A2() ...
A0() ...
B1() ...
Z1() ...
B5() ...
#endregion
#region
C1() ...
C2() ...
C0() ...
D1() ...
X1() ...
Y5() ...
#endregion
With that tool, I want like:
#region
A0() ...
A1() ...
A2() ...
B1() ...
B5() ...
Z1() ...
#endregion
#region
C0() ...
C1() ...
C2() ...
D1() ...
X1() ...
Y5() ...
#endregion
Thank you
© Super User or respective owner