我需要创建一些XML元素,如:
<Example_Property xmlns:dt="urn:schemas-microsoft-com:datatypes" dt:dt="string">ExampleData</Example_Property>
但是我的代码:
XElement newElement = new XElement("Example_Property");
XNamespace datatypes = "urn:schemas-microsoft-com:datatypes";
newElement.Add(new XAttribute(datatypes + "dt", "string"));
newElement.Value = "ExampleData";
仅创建到目前为止:
<Example_Property dt:dt="string">ExampleData</Example_Property>
我如何使用命名空间?
提前致谢。