C++ and C# communication

  • Thread starter Thread starter Dev
  • Start date Start date
D

Dev

Dear Friends,

I need communicate C++ methods into C# Program.If
anyone knows the sample code or Links.... PLease let me know...

Thanks,
Dev
 
Dev,

What do you mean you need to communicate C++ methods in a C# program?
If you mean that you have to call C++ classes from C#, then you will either
have to use Managed Extensions to C++ to wrap your C++ classes in .NET
classes, or you will have to expose your C++ classes as COM components and
then import them into .NET.

Hope this helps.
 
Back
Top