XmlAttributeTests ConstructorWithDouble 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 ConstructorWithDouble()
Examples

[Test]
public void ConstructorWithDouble()
{
    var attribute = new XmlAttribute("name", 3.14);
    Assert.AreEqual("name", attribute.Name);
    Assert.AreEqual("3.14", attribute.Value);
}
See Also