我正在使用xsd.exe从 xsd 文件集合生成 C# 类。xsd 文件使用<xsd:documentation>
标签来包含有用的描述。例子:
<xsd:complexType name="AddressType">
<xsd:annotation>
<xsd:documentation>A formatted or free form address and its intended use.</xsd:documentation>
</xsd:annotation>
不幸的是,所有这些都在生成的 C# 类中丢失了。有趣的是,每个类都附有 一个空的备注文档标签。
/// <remarks/>
如何将此文档包含在生成的 C# 类中(在或文档标签中)?