Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我经常为我现有的类使用 Resharper 的“提取接口”功能,但是有没有办法为我没有源代码的其他类型执行此操作,只是一个参考,使用 resharper 或任何其他工具?
是的...反编译 dll/类型可能使用 ReSharper 7.x 中内置的 DotPeek,然后将反编译类中的代码复制并粘贴到项目中的新本地类中,然后重构 -> 提取接口。
temp类代码甚至不用编译,只需提取接口并删除这个“temp”类,然后将所有using语句添加到接口中即可编译。
希望这可以帮助。
阿提夫