用 Mono.Cecil 替换类

发布于 2024-08-28 10:50:41 字数 385 浏览 7 评论 0原文

假设我有程序集 A。它用 Mono.Cecil 进行了一些修改。现在假设我有程序集 B。它有一个名为 SomeClass 的类。程序集 A 还有一个名为 SomeClass 的类。现在我想用程序集 B 中的程序集 A 中的 SomeClass 替换。我尝试了一些方法,但我知道,对于我的其中一次尝试,它实际上重新映射了一个方法调用,如下所示:

Console.WriteLine("Test.");

.. .into this:

int.WriteLine("Test.");

那是不对的。用 Mono.Cecil 替换类的正确方法是什么?

Say I have assembly A. It was modified with Mono.Cecil a little bit. Now say I have assembly B. It has a class named SomeClass. Assembly A also has a class named SomeClass. Now I want to replace SomeClass from assembly A with the one in assembly B. I tried a few things, but I know that for one of my attempts, it actually remapped a method call like this:

Console.WriteLine("Test.");

...into this:

int.WriteLine("Test.");

That can't be right. What is the correct way to replace a class with Mono.Cecil?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

莫多说 2024-09-04 10:50:41

你可能正在做一些塞西尔不理解的事情。如果没有看到任何代码,就不可能告诉您什么。

将一种类型交换为另一种类型并不简单,您必须在目标模块中重新创建要注入的对象模型,并将其每个引用替换为新的引用。基本上,您必须遍历目标模块中的每个引用并确保其得到正确处理。

You're probably doing something that Cecil doesn't understand. It's impossible to tell you what without seeing any code.

Swapping a type by another is not trivial, you'd have to recreate in the target module the object model you want to inject, and replace every reference of it with the new one. Basically, you'd have to walk over every reference in the target module and make sure it's properly processed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文