[R#: 5.0.1532.23] Move declarations to namespace bug in conjunction with #region / #endregion

Hi

Consider folowing fragment:

  1. #region Used namespaces
  2. using System.Windows.Forms;
  3. #endregion
  4. namespace ObjectMonitor.UserDecodeTables
  5. {
  6.     public partial class UserDefinedProtocolForm : Form
  7.     {
  8.         public UserDefinedProtocolForm()
  9.         {
  10.             InitializeComponent();
  11.         }
  12.     }
  13. }




move declarations to 'ObjectMonitor' move #endregion into incorrect place:

  1. #region Used namespaces
  2. using System.Windows.Forms;
  3. namespace ObjectMonitor
  4. {
  5.     #endregion
  6.     public partial class UserDefinedProtocolForm : Form
  7.     {
  8.         public UserDefinedProtocolForm()
  9.         {
  10.             InitializeComponent();
  11.         }
  12.     }
  13. }
0
1 comment

Problem still exists. Is it only mine?

0

Please sign in to leave a comment.