In MonoDevelop when I select the "Format" menu to clean up the code spacing it converts this code:
string a =@"
sdfsdf
sdfsdf
sdfsdf";
into single line
string a = @"sdfsdf\n\sdfsdf\n\sdfsdf\n\n";
Is there a way to tell the formatter to ignore strings on multiple lines?