how to access c# code into vc++ .net

  • Thread starter Thread starter Kanaiya
  • Start date Start date
K

Kanaiya

how to access code of C# dll into vc++ .net. and aslo if i
want to take code of c# directly in to vc++ .net project
how it is possible.
 
Kanaiya said:
how to access code of C# dll into vc++ .net.

Managed C++ is a .Net language. You can import C# classes in the same way
you import any of the classes in the Common Language Runtime (CLR)

If you are using unmanaged C++, then there are a few ways to go. One is to
view the C# classes as COM objects. See the book "Essential Guide to Managed
Extensions for C++" by Challa and Laksberg for details.

Regards,
Will
 
Back
Top