Link to home
Start Free TrialLog in
Avatar of fancyfanta
fancyfantaFlag for Türkiye

asked on

dll file to c#

how can I import a dll file to c# execute file?
I tried add to system but I couldn't. It is not accepting.
I tried the reflector...
How?
Thanks.
Avatar of Fernando Soto
Fernando Soto
Flag of United States of America image

If this is a .Net dll file just add a reference to the dll file from within Solution Explorer References node and then add a using statement to your code file.
ASKER CERTIFIED SOLUTION
Avatar of systan
systan
Flag of Philippines image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You may need to run it through OllyDbg and find the method through function list. This is a sure way to find out what it uses and sometimes the names and then you can use systan's example to import the functions.