XmlDataTests ToStringProperty Method Delta Engine Documentation

Namespace: DeltaEngine.Content.Xml.Tests
Assembly: DeltaEngine.Content.Xml.Tests (in DeltaEngine.Content.Xml.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void ToStringProperty()
Examples

[Test]
public void ToStringProperty()
{
    var root = CreateShallowTestXmlData();
    Assert.AreEqual(@"<Child1 Attr1=""Value1"" Attr2=""Value2"">Tom</Child1>",
        root.Children[0].ToString());
}
See Also