我已经使用了resharper一段时间了,我注意到它有时会为你的代码添加建议,例如:
我正在写一个视觉工作室加载项,我想做同样的事情。 有人能指出我正确的方向吗?
答案 0 :(得分:1)
Hadi Hariri写了一些很好的介绍,用插件来扩展Resharper:
http://hadihariri.com/2010/01/12/writing-plug-ins-for-resharper-part-1-of-undefined/
http://hadihariri.com/2010/07/20/writing-plug-ins-for-resharper-part-2-of-n/
...或者使用Resharper 5中的新自定义模式匹配功能。
http://hadihariri.com/2010/08/19/highlighting-custom-patterns-with-resharper/
为了开始编写Hadi描述的插件,请参阅Resharper安装目录中的以下dll:
进一步检查来源Resharper PowerToys:
http://resharperpowertoys.codeplex.com/
请注意,如何在Resharper版本之间实现插件存在一些差异。