2010-04-13 77 views
1

我想在我的C#方法上爲我的XML註釋建立一個列表。C#XML評論 - 建立一個列表

我正在使用下面的文檔,但是這個列表實現不適用於我。我正在使用visual studio 2008和.net 3.5。

http://msdn.microsoft.com/en-us/magazine/cc302121.aspx

如何建立使用XML註釋在C#中的列表?

這是我目前的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> 
+0

您是否在適當的項目選項中啓用了「生成XML註釋」? – Alex 2010-04-13 06:19:31

+0

只有列表不起作用?你可以發佈你的代碼嗎? – Hun1Ahpu 2010-04-13 06:25:47

+0

@ Hun1Ahpu - 查看更新的代碼。 @亞歷山大,是的,所有的箱子都檢查過了。 – Russell 2010-04-13 06:39:25

回答

1

嘗試刪除列表中的para標籤。