.NET Reflector - Reflexil,将私有更改为公共
我有一个程序集加载到 .NET 反射器中,并且有 reflexil 插件。 我在程序集中找到了一个方法,但它是私有的。将整个方法复制到我的代码中的工作量太大,因为它在程序集中使用了许多其他方法。我只想将
private void Check(string Proxy, int Port)
更改为
public void Check(string Proxy, int Port)
这样我就可以在我的代码中使用它。有谁知道如何更改它以及之后如何保存固定组件?
柯克
I have an assembly loaded into .NET reflector and I have the reflexil addin.
I found a method in the assembly but it's private. Copying the whole method to my code is too much work because it uses many other methods in the assembly. I just want to change
private void Check(string Proxy, int Port)
to
public void Check(string Proxy, int Port)
So I can use it in my code. Does anybody know how to change it and how to save the fixed assembly after that?
Kirk
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要重写程序集,而是考虑使用代码中的反射来动态调用私有方法,请参阅:
如何使用反射来调用私有方法?
Instead of re-writing the assembly, consider using Reflection from your code to invoke the private method dynamically, see:
How do I use reflection to invoke a private method?