|
-
Mar 28th, 2009, 12:49 AM
#1
Thread Starter
Hyperactive Member
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
-
Mar 28th, 2009, 02:00 AM
#2
Re: Checking Functions In a Dll
Is this a .NET assembly, a COM component or neither?
-
Mar 28th, 2009, 09:33 AM
#3
Thread Starter
Hyperactive Member
Re: Checking Functions In a Dll
I think a .Net assembly, but does it matter?
-
Mar 28th, 2009, 09:38 AM
#4
Re: Checking Functions In a Dll
 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/
-
Mar 28th, 2009, 09:46 AM
#5
Thread Starter
Hyperactive Member
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.
-
Mar 28th, 2009, 09:59 AM
#6
Re: Checking Functions In a Dll
Did you even click on the link by jmc? Look, a product!
-
Mar 28th, 2009, 10:16 AM
#7
Thread Starter
Hyperactive Member
Re: Checking Functions In a Dll
yeah...didn't notice the link, thanks jmc
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|