Is Managed C++ supported .NET CF??

  • Thread starter Thread starter vikky
  • Start date Start date
V

vikky

Hi,

I was looking to use a native binary ( a .lib file, not a dll) using
the capabilities of linking against native binaries in Managed C++.
However after some searching I got to know that managed C++ is itself
not supported on .NET CF. Is it true?
Then what are my options to use a native .lib file (which is c++ lib)
in managed code in .NET CF?

Regards,
VB
 
No, managed C++ is not supported. FOr a native lib you must create a native
DLL that exposes the calls and then P/Invoke it.


--

Chris Tacke, Embedded MVP
OpenNETCF Consulting
Giving back to the embedded community
http://community.OpenNETCF.com
 
Back
Top