如何在c#中设置文件注释

时间:2009-09-28 18:44:59

标签: c# filesystems

如何设置c#中的任何文件注释,作者信息?

1 个答案:

答案 0 :(得分:3)

新答案

您可能需要查看this Stack Overflow question,其中详细说明了您尝试做的事情(我认为)。

Olde Answer

Use XML Comments

list of tags未明确包含author,但您可以添加它。

示例:

    /// <summary>
    /// Example Summary of method
    /// </summary>
    /// <author>
    /// George Stocker
    /// </author>
    /// <date>
    /// 9/28/2009
    /// </date>
    static void Authorstuff()
    {
         //method stuff here  
    }