we want to edit one dll file that write with C#. I check the file with reflector and want to change just the connection string password field to new password. How can I edit this without accessing to source code or recompiling the file?
it just let me rename the connection string and inject the class, interface, struc,... I want to just edit the password=
2010-09-21 13:38:05
I just tried it myself. You can modify string variables in Reflexil. I saved the modifed dll and looked in Reflector at the disassembler code and it showed the modifed string.
testalino
2010-09-21 13:55:18
A:
I think you're out of luck. This is a good example of why such items need to be referenced in external resources.
EDIT: though I've never tried it, the comment from @Testalino regarding Reflexil looks promising.
Andy Evans
2010-09-21 13:25:04