I'm not able to open .dll's in Notepad. How can I browse it's contents to view the code available in the class?
Asked
Active
Viewed 1.1k times
4
-
Possible duplicate of [How to view DLL functions?](http://stackoverflow.com/questions/4438900/how-to-view-dll-functions) – user Jun 14 '16 at 08:02
1 Answers
5
You can get a good start using a dependency program like http://www.dependencywalker.com/.
This should tell you something about what functions the DLL exports.

Greg Humphreys
- 968
- 1
- 7
- 11
-
Thank you. A lot of freeware I tried only works on .NET files. This one works on my non-.NET project. – Sridhar Sarnobat Sep 23 '13 at 20:29