how to add dotnet component in vc++

  • Thread starter Thread starter Kanaiya
  • Start date Start date
If you want to use a c# developed .NET component from a c++ managed
application/extension use

using <pathofc#dll.dll>

This is roughly the same as adding a reference in a c# project. If it's a
regular c++ program (not .NET) you should create a COM wrapper for the C#
component and use it as any other COM object.


Arild
 
Back
Top