See the following which I want to create dynamically:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:custom="http://www.example.org/custom">
<xs:element name="Tab1">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="1" maxOccurs="50" name="Emp_name" type="xs:string">
<xs:annotation>
<xs:appinfo>
<custom:attribute URL="www.test.com " State="california "/>
</xs:appinfo>
<xs:documentation>
Employee name
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:schema>
Facing the problem to create:
<custom:attribute URL="www.test.com " State="california "/>
How can I create (using c#) this node within
<xs:appinfo> </xs:appinfo>