Checking Functions In a Dll
How do I check which functions are in a dll I don't who's contents are unknown to me? I am looking to use a certain function and I have a couple of dlls and I don't know in which one it is are its name. So i need to be able to show all function available in a dll and their parameters.
Thanks
Re: Checking Functions In a Dll
Is this a .NET assembly, a COM component or neither?
Re: Checking Functions In a Dll
I think a .Net assembly, but does it matter?
Re: Checking Functions In a Dll
Quote:
Originally Posted by
Blacknight
I think a .Net assembly, but does it matter?
Probably wouldn't have asked the question if it didn't matter.
Are you looking to interrogate this assembly in code at run time, or do you want to just look inside it during development? If it's the former then you would use reflection in code. If it's the latter then you can use the .NET Reflector tool, which will use reflection, along with other tricks, to rebuild the VB or C# source code from a compiled assembly.
http://www.red-gate.com/products/reflector/
Re: Checking Functions In a Dll
I am just looking for a certain function which I know exists in one of the dlls. Once I find it i want to use it in my code.
So my aim isn't a code which does this if can done be done by a program already built.
Re: Checking Functions In a Dll
Did you even click on the link by jmc? Look, a product!
Re: Checking Functions In a Dll
yeah...didn't notice the link, thanks jmc :)