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

发布于 2024-08-05 20:39:27 字数 26 浏览 2 评论 0原文

如何从c#设置任何文件注释、作者信息?

How to set any file comment, author information from c#?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

川水往事 2024-08-12 20:39:27

新答案

您可能需要查看这个 Stack Overflow 问题,其中详细介绍了哪些内容你正在尝试做(我认为)。

旧答案

使用 XML 注释

标签列表未明确包含作者< /code>,但你可以添加它。

例子:

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

New Answer

You may want to check out this Stack Overflow question, which details what you're trying to do (I think).

Olde Answer

Use XML Comments.

The list of tags doesn't explicitly include author, but you can add it.

Example:

    /// <summary>
    /// Example Summary of method
    /// </summary>
    /// <author>
    /// George Stocker
    /// </author>
    /// <date>
    /// 9/28/2009
    /// </date>
    static void Authorstuff()
    {
         //method stuff here  
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文