Using unmanaged code from CF

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,
I've written an unmanaged DLL in C++ that contains different class; I must
use this DLL from my Windows CE device with an application written in C#.
I'd like to use C++/CLI for write a wrapper around C++ unmanaged code. Is it
possible ?
 
Managed C++ is not supported. The only managed to native interface is
P/Invoke and there's plenty of online documentation on how that works.

-Chris
 
Back
Top