Managed C++ ref class
Basically, a ref class is a CLR class. It’s the equivalent of class in C#. This creates a reference type managed by the CLR. If you want to make a class that’s usable from C#, you’d normally create a ref class. (ref struct, by the way, does exactly the same thing, but with C++’s standard … Read more