help me!!!
-
I would like to call methods that are written in visual c++ 6.0 from the .NET environment. If you know how to do this, please explain in the most simple way. And if you can also send me a sample I will be glad and thankful! ;P thanks in advance sheli
-
I would like to call methods that are written in visual c++ 6.0 from the .NET environment. If you know how to do this, please explain in the most simple way. And if you can also send me a sample I will be glad and thankful! ;P thanks in advance sheli
-
Can you please send me an example of such com or com+ file? thanks sheli
-
I would like to call methods that are written in visual c++ 6.0 from the .NET environment. If you know how to do this, please explain in the most simple way. And if you can also send me a sample I will be glad and thankful! ;P thanks in advance sheli
Hi, You can look into p/invoke! Just assume that you have a C++ dll, and you want to call into your C# application. [DllImport("yourapp.dll")] internal static extern int SomeMethod(); Hope it helps. Cheers. Regards, Chua Wen Ching Visit us at http://www.necoders.com