Link Search Menu Expand Document

XmlDocument « XML Constant Operator

This operator loads the XML constants on the right side of the XmlDocument object on the left side.

Example of use

var x = new XmlDocument ();
x << xml <<-
<? xml version = "1.0" encoding = "SHIFT_JIS"?>
<data>
    <record title = " Record 1 ">
        <item1> Item 1 </ item1>
        <item2> Item 1 </ item2>
        <item3> Item 1 </ item3>
    </ record>
</ data>
->>;