If I add a public method to a C# class, do I need to recompile other assemblies using that type?

Posted by Adal on Stack Overflow See other posts from Stack Overflow or by Adal
Published on 2010-05-20T00:04:55Z Indexed on 2010/05/20 0:10 UTC
Read the original article Hit count: 237

Filed under:
|
|
|
|

Question in the title.

I'd like to avoid recompiling since the source code I'm modifying is third party and I'd like to use the original binaries where possible, and replace only the assembly which contains the class I modified. But I'm not sure if this is a safe thing to do. In C++ for example this is definitely a bad idea.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about c#