1
내 C# 메서드에 대한 XML 주석 목록을 작성하려고합니다.C# XML 주석 - 목록 작성
다음 문서를 사용하고 있지만이 목록 구현은 저에게 적합하지 않습니다. Visual Studio 2008 및 .net 3.5를 사용하고 있습니다.
http://msdn.microsoft.com/en-us/magazine/cc302121.aspx
은 어떻게 C#에서 XML 주석을 사용하여 목록을 작성합니까?
다음은 현재 사용중인 XML 코드입니다. para 태그는 제대로 작동하지만 목록이 생성되지 않습니다.
/// <summary>
/// Populates an entity from the database.
/// <para />
/// <list type="table">
/// <listheader>
/// <term>This method contains assumptions in the implementation of the entity:</term>
/// </listheader>
/// <item><term>Given the entity name [name]Entity (eg. [User]Entity is User), there is an
/// appropriate stored procedure created: dbo.sp[name]View (eg. dbo.spUserView).
/// <para />
/// The structure of the stored procedure must adhere to design principles to correctly
/// load the data into the objects.
/// <para />
/// See documentation on implementation of stored procedures if you are unsure of any details.
/// </term>
/// </item>
/// </list>
/// </summary>
/// <param name="entity"></param>
해당 프로젝트 옵션에서 'XML 주석 생성'을 활성화 했습니까? – Alex
목록 만 작동하지 않습니까? 이 코드를 게시 할 수 있습니까? – Hun1Ahpu
@ Hun1Ahpu - 업데이트 된 코드를 참조하십시오. @Alex, 네 모든 상자가 확인되었습니다. – Russell