[R#: 5.0.1532.23] Move declarations to namespace bug in conjunction with #region / #endregion
Hi
Consider folowing fragment:
-
#region Used namespaces
- using System.Windows.Forms;
- #endregion
- namespace ObjectMonitor.UserDecodeTables
- {
- public partial class UserDefinedProtocolForm : Form
- {
- public UserDefinedProtocolForm()
- {
- InitializeComponent();
- }
- }
- }
move declarations to 'ObjectMonitor' move #endregion into incorrect place:
-
#region Used namespaces
- using System.Windows.Forms;
- namespace ObjectMonitor
- {
- #endregion
- public partial class UserDefinedProtocolForm : Form
- {
- public UserDefinedProtocolForm()
- {
- InitializeComponent();
- }
- }
- }
Please sign in to leave a comment.
Problem still exists. Is it only mine?