Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Overview

Creates a new XmlWriter instance.

XmlWriter myXml.Create()

Remarks

This method creates a new XmlWriter instance and returns it.

Example

var writer = $Xml.Create();
writer.StartElement('Customer');
writer.EndElement();
var xml = writer.ToXml();

See Also

  • No labels