When selecting multiple entries in the va ouline and doing a surround with #region, it creates erronous regions when the selection contains attributes.
e.g.:
[Category("test"]
public bool Test1()
{
}
[Category("test"]
public bool Test2()
{
}
[Category("test"]
public bool Test3()
{
}
Now do a surround with region from the VA Outline, VAX will create one region for every function, it creates an #endregion before the attribute and a #region after.
Although sometimes it does skip a few attributes, not sure why exactly. Once i selected 9 properties (equal definitin and attributes) and VAX created 3 regions for it.