是否可以扩展“分析”功能?反射镜的特点?
有谁知道是否可以扩展 Reflector 的分析功能?当您选择一种类型并单击“分析”时,您会在该分析窗口中看到“取决于”、“使用者”、“暴露者”或“实例化者”选项。我想获取该输出并将其发送到文件。
提前致谢, 艾伦
Does anyone know if it's possible to extend the analyze functionality of Reflector? When you select a type and click "Analyze" and then in that analyze window you get the options of "Depends On", "Used By", "Exposed By" or "Instantiated By". I would like to get that output and send it to a file.
Thanks in advance,
Allan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里有一个反射器列表插件第一个似乎做你想做的事。我自己没试过。
更新:反射器插件的 Codeplex 的更好链接 链接文本 它包含一个 文件反汇编器 添加
我在 codebetter.com 上发布的第一个链接相当旧了。
编辑:
您可能想尝试 NDepend
There is a list addins for reflector here and the first one seems to do what you want. I have not tried it myself.
Update: A better link to codeplex for reflector add ins link text It includes a file disassembler add in
The first link I posted at codebetter.com is pretty old.
Edit:
You might want to try NDepend instead
据我所知,Reflector 的分析部分不容易扩展。但是,如果您想要获得的只是分析树(它是一个 TreeView 控件)中显示的内容的列表......那么我也许可以帮助您。听起来它很适合我从事的 PowerCommands for Reflector 项目 (http://powercommands.codeplex.com/ )。
您是否只想导出树中(未展开的)节点的列表...例如“使用者”下的节点?我可以编写导出或复制为文本,以将节点列表输出为文本。这就是您正在寻找的吗?
To the best of my knowledge, the Analyze part of Reflector is not easily extended. However if a all you want to get is a listing of what is shown in the Analyze tree (it is a TreeView control) ... then I maybe able to help you with this. It sounds like it would fit nicely into the PowerCommands for Reflector project I work on (http://powercommands.codeplex.com/).
Are you just wanting to export a listing of the (unexpanded) nodes in the tree ... say under 'Used By'? I could write a export or copy as text to output the node list as text. Is that about what you are looking for?