call c++ classes within c# code

  • Thread starter Thread starter cle
  • Start date Start date
C

cle

hi all,
Is there a possibility to call c++ classes directly out of
c# code without using dll's?
How is it been done in 'normal' .Net and how in the
CompactFramework?
thanks
Clemens
 
Clemens,

No, there is not. You will have to expose the C++ classes by using
Managed Extensions for C++, or you will have to expose them through COM.

Hope this helps.
 
hi nicolas,
did i get you right, i have to write a managed c++ class that wraps my
classes and then make an dll out of the managed class?
if thats correct, so do you know how to create this dll with
visualstudio .net ?
clemens
 
Back
Top