Click here to Skip to main content
15,891,529 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hii ,

I am wondering for any free software which allows me to make the changes into my logic by just editing the dll using that software.

I checked online but almost all are paid version, anyone knows abt any kind of tool which free.

I am using vs 2012 express for development
Posted
Comments
Wendelius 19-Feb-15 5:54am    
If it's a DLL you have made, why do you need to make changes into the DLL rather than change the source code?
Torakami 19-Feb-15 8:01am    
The thing we have very often deployment on live for small small fixes .. and for that we don't want to include our next versions local copy again again ,.,. its a nightmare .. insted we can fix those chnages on dll itself by editing if any small bugs into it

It may be that I have completely misuderstood your situation but...

If the pain is that you're simultaneously adding new features into your code and at the same time you should be able to provide fixes to the versions you have shipped, it sounds like you would need to use branching in your version control. Many of the version control systems support branching.

For more details, have a look at http://en.wikipedia.org/wiki/Branching_(revision_control)[^]
 
Share this answer
 
dll is a compiled file, you need to decompile that first. Then you can do the changes and create the dll once again.
Fortunately, there is a great free tool from Telerik is available named "JustDecompile"
You can download it from here
JustDecompile[^]
Follow the detailed documentation and get your job done.
The process is pretty simple though.

Hope, it helps :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900