すべてのXml-CommentingがIntellisenseに表示されるわけではないようですが、おそらく正しく実行されていませんか?とにかく、列挙リスト内の個々の列挙メンバーが説明テキストとともにインテリセンスで表示されるようにしようとしています。たとえば、String.Splitメソッドでは、次のように、3番目のオーバーロードがStringSplitOptions列挙をパラメーターとして受け取ります。
代替テキストhttp://www.freeimagehosting.net/uploads/a138d36615.jpg
私が試した他のことの中で:
public enum ErrorTypeEnum
{
/// <summary>The process could not identify an agency </summary>
BatchAgencyIdentification // Couldn't identify agency
/// <summary>The batch document category was invalid.</summary>
, BatchInvalidBatDocCatCode // Anything other than "C"
/// <summary>The batch has no documents.</summary>
, BatchHasNoDocuments // No document nodes
...
上記の例は機能しますが、最初の列挙に対してのみ機能し、他の列挙に対しては機能しません。
私が間違っていることは何ですか?