Is it possible in .NET to make all strings within a class, namespace, file, etc. Verbatim String Literals.
There are always a file or two that simply need tons of escaping, where it would be nice to have all strings be considered Verbatim String Literals unless otherwise specified (IE opposite of default .NET behavior).
Use Case: In some of our constant declaration files (that don't belong in the Resource files). Also in helper files for Razor where we are escaping HTML over and over again.