Having the two members of the following code:
[...]
#if DEBUG
private int mInt1;
#endif
private int mInt2;
[...]
embraced with a region on the File Structure (new version) window, results in
#if DEBUG
#region Region
private int mInt1;
#endif
private int mInt2;
#endregion
, which is incorrect syntax.