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>
link|improve this question

0% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.