Hi,
I have a simple XSD:
<xs:element name="config">
<xs:complexType>
<xs:sequence minOccurs="1" maxOccurs="unbounded">
<xs:element name="group" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
On my xml file i put this:
<config>
<group></group>
<a></a>
</config>
How block the insertion of <a>
tag on my xml?
Obs: group appears on auto-complete on my C# xml editor!!!