46

グローバル変数m_xDoc

私はのプロパティを持っています

public XmlDocument xDoc
{
    get {return m_xDoc; }
    set {value = m_xDoc; }           
} 

string xml = "<head><body><Inner> welcome </head></Inner><Outer> Bye</Outer></body></head>"

次に、この文字列を XML ドキュメントとしてそのプロパティに設定する必要があります...これを行う方法を教えてください

4

4 に答える 4

86

XmlDocument の LoadXml メソッドを使用します。

string xml = "<head><body><Inner> welcome </head> </Inner> <Outer> Bye</Outer></body></head>";
xDoc.LoadXml(xml);
于 2012-06-08T10:12:12.927 に答える
34
// using System.Xml;

String rawXml =
      @"<root>
          <person firstname=""Riley"" lastname=""Scott"" />
          <person firstname=""Thomas"" lastname=""Scott"" />
      </root>";

XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(rawXml);

これでうまくいくと思います。

于 2012-06-08T10:14:35.053 に答える
4
xDoc.LoadXML("<head><body><Inner> welcome </head> </Inner> <Outer> Bye</Outer>                    
                    </body></head>");
于 2012-06-08T10:12:55.377 に答える