I am attempting to call a C# .NET DLL from an unmanaged C# application. I have tried writing a C++/CLI wrapper but was unable to compile for a CE target. After some digging through many form posts it is the general consensus that C++/CLI is not supported for WinCE however I have not found an official Windows document supporting that. I have also tried creating a COM wrapper for my DLL which compiles fine however fails to create an instance of the wrapped object at runtime. I have registered my COM component correctly but it seems that it is also not supported.
Does anyone know of:
- Any workarounds to get C++/CLI or COM to work for WinCE 2013.
- A preferred method of Inter-Process Communication between C++ and C# applications.