Calling unmanaged dlls dynamically in C#.NET
Actually I have an application(dll) written in VC++.
That dll I want to call in C#.NET dynamically..
Can anybody help on this....ASAP..
Thanks,
Saru
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Daniel Innala AhlmarkPosted Oct 22, 2008, 8:25 AM
[DllImport("msvcrt.dll")]
public static extern int puts(string c);
Then you can call the function.
Check out:
Platform Invoke Tutorial
Regards,
Daniel
Daniel Innala AhlmarkPosted Oct 22, 2008, 8:25 AM
[DllImport("msvcrt.dll")]
public static extern int puts(string c);
Then you can call the function.
Check out:
Platform Invoke Tutorial
Regards,
Daniel