如何自定义Resharper的“代码清理”功能更改 C# 中的文档标题规则

发布于 2024-11-05 07:44:54 字数 436 浏览 6 评论 0原文

我想使用代码清理以以下方式自动创建文档标题:

/// <summary>
/// **Some summary.**
/// </summary>
/// <param name="myParam">**The param.**</param>
/// <typeparam name="TService">**The type.**</typeparam>
/// <returns>**Whatever.**</returns>
TService Do<TService>(int myParam)

即,摘要具有多行,但其余字段使用单行。目前我的默认 resharper 设置始终使用多行。

Resharper“代码清理”中控制此行为的规则集是什么?是否可以?

I would like to use code clean up to automatically create the documentation headers in the following way:

/// <summary>
/// **Some summary.**
/// </summary>
/// <param name="myParam">**The param.**</param>
/// <typeparam name="TService">**The type.**</typeparam>
/// <returns>**Whatever.**</returns>
TService Do<TService>(int myParam)

This is, summary has multiple lines but the rest of the fields use a single line. Currently my default resharper settings always use multiple lines.

What is the set of rules that control this behavior in Resharper "code clean up"? Is it possible?

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

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

发布评论

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

评论(2

携君以终年 2024-11-12 07:44:54

Resharper 的代码清理不会执行此操作,但您可以使用 GhostDoc。它甚至可以为许多常用方法(构造函数、事件处理程序、属性等)编写正确的注释。

Resharper's code cleanup won't do this, but you can use GhostDoc. It can even write correct comments for a lot of common methods (constructors, event handlers, properties, etc).

场罚期间 2024-11-12 07:44:54

我不会创建 XML 文档注释,只会重新格式化它们。

不过它更新文件头...

I won't create XML doc comments, only reformat them.

It will update file header though...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文