I have a given .NET assembly myassembly.dll
Inside that assembly I have a class MyNameSpace.MyClass
I wamt to change that class but I don't want to change other classes
Is there any way to extract that class from the DLL and then to recompile it with the new class, assuming that I have the source for MyNameSpace.MyClass but non of the other sources?
Thank you in advance