Rewrite a method of a .Net DLL
问题 I have an old .NET DLL which I have lost the source code to and I wanted to see if I could change its behavior. It has a method that takes in a string and returns a string. I would want to rewrite this method such that I can return startStr + " test"; I tried .NET reflector but the project it produced has a bunch of strange errors so I cannot recompile it. I then tried Reflexil, but it only offers assembly level changes. Is there any way I could rewrite the method in C# and have the DLL use