Sir,
Iam new to C#. I have a Dll in visual c ++, I want to access that in c#. Plz give some suggestion to do that.
For practice I have done exactly the same given in the following link
http://msdn.microsoft.com/en-us/library/ms235636.aspx but in my system the following error is showing.
unable to access the file #include "MathFuncsDll.h". so plz tell me why that error is comming.
Bechir BejaouiPosted Dec 11, 2008, 6:25 AM
After that include it to your project
using yourDllName;
then you can make use it as it is leveraged with C#, because the Common Language Runtime enables the use of multilanguage context within a unique project as all the codes those written using C# VB.NET J# or any other supported .Net languages are compiled to IL the intermediate language that stands between the high level language and the native form
kishore raviPosted Dec 10, 2008, 11:24 PM
Sir,
I have done my program in visual studio .net2003.
thank u verymuch.
with regards,
Bechir BejaouiPosted Dec 8, 2008, 9:14 AM