Click here to Skip to main content
15,915,093 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
how can i open the dll libraris to read it source code
Posted
Comments
Sivaraman Dhamodharan 16-Apr-14 2:02am    
If everybody can read the code from the Binary... Man! I hope I does't get your question... come again please...
Member 10518623 16-Apr-14 2:58am    
I know it's binary format but how can be converted to one of the programming languages​​, but not the assembly i know it may be protected...so it easy i no asked

1 solution

Source code is not contained in the executable modules (PE files). After compilation/linking, the original source code is totally lost from the output. In principle, you can reverse-engineer such module, but the result will be in one or another form of Assembly Language, and, by far, not so readable as ASM code written by a good developer, because all names are also lost.

Reverse engineering of such modules is expensive and usually does not pay off, unless this is some super-secret algorithm, a break-through inventions if the century.

—SA
 
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