C# call method in C++7

  • Thread starter Thread starter Giang Pham
  • Start date Start date
G

Giang Pham

Dear all,
I created a C# project. But there is a module that was created by C++ .NET
(7.0), this module will load structure file and get information from that
file.
I heard that .NET environment support the mechanism that I can call from C#
those funtions in C++ module ?
Thank you alo.
 
Hi Giang,

If you mean by module a .net assembly (.dll) you can just reference that
ddl from your project and add the appropiate 'using' statement for that
namespace in you c# file where you need to call the methods / init the
classes.

Ward
 
Can you give me an example ?

wbekker said:
Hi Giang,

If you mean by module a .net assembly (.dll) you can just reference that
ddl from your project and add the appropiate 'using' statement for that
namespace in you c# file where you need to call the methods / init the
classes.

Ward
 
Back
Top