Category "c++-cli"

Error using C++/CLI dll in Azure function (zip deployed)

So I have: a c++/cli wrapper withini a clr c++ dll a c# net6 azure function which is referencing the c++/cli project The issue: It works perfectly when I'm test

Calling a native C++ method from C++/CLI

I'm developing Wordle in C++ using a .net graphic interface with visual studio. I have a file.h that contains a class "WordDatabase", and I need to use one of t

How to initialize and print a std::wstring?

I had the code: std::string st = "SomeText"; ... std::cout << st; and that worked fine. But now my team wants to move to wstring. So I tried: std::wst