Replacing a class with Mono.Cecil

Posted by icktoofay on Stack Overflow See other posts from Stack Overflow or by icktoofay
Published on 2010-04-11T20:47:09Z Indexed on 2010/04/11 20:53 UTC
Read the original article Hit count: 290

Filed under:
|
|

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?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about c#