Visual Studio 2008 adds lots of new functions for working with XML files and one of the feature that I love is absolutely the new XML Literal support. If you're together a VB.NET and a C# developer and you've worked with XML manipulation, you've discovered that VB.NET permits you to do something cool things like this: You can immediately paste an XML document inside your code, without to be forced to use structures like XElement, XAttribute in order to declare an XML. The power of VB! C# doesn't have this feature, but today by reading Lorenzo Barbieri's...