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:name

bb:age

bb:location

名前空間から「bb」を削除してxmlns="........."にする必要があります。また、C#を使用してフィールド名から「bb:」を削除する必要があります。

4

1 に答える 1

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