我正在尝试创建一个带有前缀 g 的 xml 文档:
C#
static void Main(string[] args)
{
XNamespace g = "g:";
XElement contacts =
new XElement("Contacts",
new XElement("Contact",
new XElement( g+"Name", "Patrick Hines"),
new XElement("Phone", "206-555-0144"),
new XElement("Address",
new XElement("street","this street"))
)
);
Console.WriteLine(contacts);
}
相反,它显示为:
..<contacts>
<contact>
<name xmlns="g:">
...