使用T4模板复制评论
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不幸的是,我不知道有任何现有的公共 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.
一种方法是使用 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/