In Ruby, you can use strings without having to avoid double quotes in a string, for example Q / Some my string with "double quotes" /
Is it possible to use C # to use a string without having to avoid double quotes? For good reason, I need to write inline SQL and be very annoying to avoid double quotes every time I put an SQL query from the DB console into C # code.
I know that you can use \ "or" "as a single double quote. But can you avoid the need to avoid double quotes?
source
share