プログラムで xsd ドキュメントを作成するにはどうすればよいですか? 例:
<xs:annotation>
<xs:documentation>Documentation</xs:documentation>
</xs:annotation>
私が使用した:
XmlSchemaElement element = new XmlSchemaElement();
XmlSchemaAnnotation annotation = new XmlSchemaAnnotation();
XmlSchemaDocumentation doc = new XmlSchemaDocumentation();
//doc.Value = "Documentation"; ??
annotation.Items.Add(doc);
element.Annotation = annotation;
しかし、ドキュメントの値を設定するにはどうすればよいですか? XmlSchemaDocumentation 型にはそのようなプロパティはありません。ありがとう!