共用方式為


<remarks> (C# 程式設計手冊)

<remarks>description</remarks>

參數

  • Description
    為成員的描述。

備註

<remarks> 標記可用於加入型別的相關資訊,補充以 <summary> 指定的資訊。 Object Browser Window會顯示此資訊。

使用 /doc 進行編譯,將文件註解處理為檔案。

範例

// compile with: /doc:DocFileName.xml  

/// <summary> 
/// You may have some primary information about this class. 
/// </summary> 
/// <remarks> 
/// You may have some additional information about this class. 
/// </remarks> 
public class TestClass
{
    /// text for Main 
    static void Main()
    {
    }
}

請參閱

參考

建議使用的文件註解標籤 (C# 程式設計手冊)

概念

C# 程式設計手冊