Click here to Skip to main content
15,881,757 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
How to Read Contents of Dll Files?
Posted
Comments
Sergey Alexandrovich Kryukov 31-Jan-13 3:08am    
What is that DLL? The purpose?
—SA

It depends on what is it. If this is an .NET assembly, you can reference it, or you can load it using System.Assembly.LoadFrom and use Reflection. If this is not, you can use P/Invoke or load it using LoadLibrary (Windows API), but first you still need to use P/Invoke to invoke Windows API. There can be other users: read PE file with a binary reader, extract resources, etc. Pick what you want first.

—SA
 
Share this answer
 
Comments
Balamurugan1989 31-Jan-13 4:24am    
Superb SA....
Sergey Alexandrovich Kryukov 31-Jan-13 10:30am    
Thank you.
—SA
Hi Neelmani,

Try downloading resource hacker from this site. This helps to view the resources of a dll,ocx,exe files etc..... Hope this helps

Cheers,
Edo
 
Share this answer
 
v2
 
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