I need to store HTML code for an email template in a variable, so I want to load raw HTML source into a string. This obviously doesn't work if I can't escape its contents.
For instance, I can't do this:
string myHtml = "<html><body>
<a href="foo.bar" class="blap">blip</a>
</body></html>";
How can I store HTML code as a native C# string?