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";