I have this simple code:
var q = "this is a test";
return q.Length;
Just that sometimes I need to be able to insert string that contains double quotes and this yields those errors
var q = "this is "not" a test";
How can I avoid that without manually escaping chars? I need something like python has its triple quotes when you can include anything
q = '''I can include 'everything' in here as long it's not triple quotes'''