本文介绍了使用属性xsi:type创建XML节点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我正在尝试创建一个XML文档。在in中有一个名为Column的元素,其属性为xsi:type =SQLINT。但是,虽然我描述的属性是它唯一的创建类型。我应用的代码在下面 attribute = xmlDoc.CreateAttribute( xsi:type); attribute.Value = CharTerm; userNode.Attributes.Append(attribute); 解决方案 Hi,I am trying to create an XML document . With in there is a element called Column with property xsi:type="SQLINT". But eventhough i am describing the attribute its only creating type.Code i applied is belowattribute = xmlDoc.CreateAttribute("xsi:type");attribute.Value = "CharTerm";userNode.Attributes.Append(attribute); 解决方案 这篇关于使用属性xsi:type创建XML节点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-16 15:58