0

我是 XSD 的新手。

<xs:schema id="test"
    targetNamespace="http://tempuri.org/test.xsd"
    elementFormDefault="qualified"
    xmlns:bb="http://tempuri.org/test.xsd"        
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
>

字段如下

bb:名字

bb:年龄

bb:位置

我需要从命名空间中删除 'bb' 使其变为 xmlns="........." 并且我需要从字段名称中删除 'bb:' 以及使用 C#。

4

1 回答 1

0
xsdString.Replace("xmlns:bb=", "xmlns=").Replace("<bb:", "<").Replace("</bb:", "</")
于 2013-02-15T12:56:14.920 回答