Click here to Skip to main content
15,902,635 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Friends,

Here i want to See Dll code.Means inside Code of Dll.if any Solution Please Suggest Me.



Regards,

Anilkumar.D
Posted

Hello dear,

You can't see the code inside one dll at the time of debugging your application until and unless the dll is not compiled in your machine.
 
Share this answer
 
There you may find you are out of luck.

It depends on what is in the DLL: if it is Native code, then pretty much all it contains is the compiled machine code instructions - not the high level code I suspect you want to look at.

If it is .NET code, then it still depends: If it is obfuscated, then it has been made deliberately difficult to read by special programs. If it hasn't, then it is possible that Reflector or other decompilers may help: Google is your friend here.

Do note that you may well be violating copyright and/or Intellectual Properties by using anything you get out of a DLL, and some companies have a policy of always prosecuting...
 
Share this answer
 
Comments
Anil Honey 206 31-Aug-11 7:23am    
So its Impossible to Open the Dll code
OriginalGriff 31-Aug-11 7:30am    
It's never impossible - all executable code it readable or the processor could not run the code.
What may be impossible is for you to understand what the file contains, and use that in your application. And that may be part of the whole idea...

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