AkiVaMu Just tiny things come to mind...

Use C++ inside .NET Standard/Core

At the writing time, C++/CLI isn’t supported in .NET Core.
So that you can’t use C++ code directly inside .NET project (like .NET Framework).
We have to use P/Invoke.

Steps:

  • Build C++ into DLL, that exports public entry points to be used outside.
  • In .NET, use P/Invoke to load C++ DLL file, map DLL exported entry points into .NET methods.

See my example project in gitlab