1. NETFx Dynamic Xml

    By:

    Provides a dynamic API over XLinq: var xdoc = XDocument.Load("rss.xml"); var rss = doc.Root.ToDynamic(); // Type conversion, element traversal // using dotted path notation DateTime pubDate = rss.channel.pubDate; // Type conversion, attribute navigation // using indexer notation int port = rss.channel.cloud["port"]

  2. XUnit.Should.XLinqExtensions

    By:

    "Should..." XUnit Assertion extension methods for Linq to Xml.

  3. XUnit.Should.XLinqExtensions.Tests

    By:

    XUnit tests for adjunct-XUnit.Should.XLinqExtensions

  4. NETFx Dynamic Xml Tests

    By:

    Provides unit tests for DynamicXml package.

  5. System.ResourcesXLinq

    By:

    Basic packaged resource reader.

  6. NETFx XmlEncode Extension Method

    By:

    Adds XmlEncode extension method to strings. Uses XLinq for the encoding, making it compliant with .NET handling of strings in XML attributes and elements.

  7. NETFx XmlDecode Extension Method

    By:

    Adds XmlDecode extension method to strings. Uses XLinq for the decoding, making it compliant with .NET handling of strings in XML attributes and elements.