私はVBで書かれたライブラリを持っています。次の列挙型があります。
Public Enum ModelRelationshipTypes
<Description("For 1 to 0/1 -- i.e. FK is nullable. -- related object is singleton")> _
IHaveZeroOrOne
<Description("For 1 to 1 -- related object is singleton")> _
IHaveOne
<Description("For 0 to many (i.e. FK is nullable) - related object is collection (dictionary)")> _
IHaveZeroOrMore
<Description("For 1 to many (i.e. FK is NOT nullable) - related object is collection (dictionary)")> _
IHaveOneOrMore
<Description("For many to many (for true many too many relationships, with a join table that has only FKs as a composite PK) (related object is dictionary)")> _
IHaveMany
End Enum
ただし、別のプロジェクトでこのライブラリを参照する場合 (c# - しかし、おそらく問題にはなりません)、オブジェクト ブラウザーは次のように説明を提供しません。
説明を表示するにはどうすればよいですか?