使用T4模板复制评论

发布于 2024-08-23 23:59:26 字数 226 浏览 5 评论 0原文

我正在使用 T4 模板从接口生成一个类,并且我希望能够将 xml 注释从接口复制到类方法。有可能吗?如果有,如何实现?

在我的模板中,我只是采用接口方法并像这样复制它们:

foreach(var m in typeof(IFrontEndService).GetMethods()) 
{
      <#= "Some output here"; #>
}

I'm generating a class from an interface using T4 templates, and I want to be able to copy xml-comments from the interface to the class methods. Is it possible and if yes, how?

In my template I am just taking the interface methods and copying them like this:

foreach(var m in typeof(IFrontEndService).GetMethods()) 
{
      <#= "Some output here"; #>
}

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

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

发布评论

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

评论(2

若无相欠,怎会相见 2024-08-30 23:59:26

不幸的是,我不知道有任何现有的公共 API 用于读取 xmldoc 注释。您几乎无法从磁盘上的 XML 文件中读取注释。不幸的是,将成员名称映射到 XML 文件中使用的标识符并非易事。我使用 http://www.binarycoder.net/fxcop 中描述的方法的变体/html/doccomments.html

Unfortunately, I'm not aware of any existing public API for reading xmldoc comments. You're pretty much stuck reading the comments out of the XML file on disk. Unfortunately, mapping the member names to the identifiers used in the XML file is non-trivial. I use a variation on the approach described at http://www.binarycoder.net/fxcop/html/doccomments.html.

中二柚 2024-08-30 23:59:26

一种方法是使用 CodeModel。以下是在 T4 模板中使用此 API 的示例: http://www.olegsych.com/2007/12/how-to-use-t4-to-generate-decorator-classes/

One way would be using CodeModel. Here is an example of using this API in a T4 template: http://www.olegsych.com/2007/12/how-to-use-t4-to-generate-decorator-classes/

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