History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-49527
Type: New Feature New Feature
Status: Open Open
Priority: Normal Normal
Assignee: Sergey Coox
Reporter: Vladimir Reshetnikov
Votes: 0
Watchers: 2
Operations

If you were logged in you would be able to see more operations.
ReSharper

'Comment code' action (Ctrl+/) inside verbatim multiline string should split string literal before commenting

Created: 19 Sep 07 17:58   Updated: 19 Sep 07 18:04
Component/s: Code Editing
Fix Version/s: Future Versions
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 528


 Description  « Hide
string s =
            @"1
              2
              3
              4
              5
              6";

Current result:

string s =
            @"1
              2
//              3
//              4
              5
              6";

Note that the code is not really commented.
Expected result:

string s =
            @"1
              2" + 
/*          @"
              3
              4" +
*/          @"
              5
              6";


 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.