I'm currently working on a .NET Framework 4.7.2 application. I need to use logic from an unmanaged C++ library. I must not use C++/CLI (managed C++).
I try to figure out how I can marshal a C# Dictionary to unmanaged C++:
Dictionary<string, float> myData
Do you know, what would be the correct equivalent for Dictionary<string, float> in unmanaged C++?
Thank you!