Indent bug with attributes and comments?
Hi
........[XmlElement("bexcess")] //some comment
............public int? BExcess {
............get {
................return _bExcess;
............}
............set {
................_bExcess =value;
............}
........}
is after a"reformat.code"
However, it should be:
........[XmlElement("bexcess")].//some comment
........public int? BExcess{
............get {
................return _bExcess;
............}
............set {
................_bExcess = value;
............}
........}
Note the indentation of public int?...
If I remove the comment "reformat.code" works as expected.
Am I missing something with R#3.0.513?
Many thanks,
Glenn
Please sign in to leave a comment.
Hello,
We appreciate your feedback.
The corresponding JIRA request has been created, and you are welcome to monitor
its status at http://www.jetbrains.net/jira/browse/RSRP-54690.
Best regards,
- Development Team.