var html = @"<html>
<body>
<span id=""name""> somethnig more</span>
</body>
</html>";
Placing @ before a string means that the contents should not be parsed
(
and other control characters do not work). It also means that the
string can span over multiple lines and have
" in it, as long as you write "" (only one will be displayed).