A mixed-mode application is any application that combines native code (C++) with managed code (such as Visual Basic, Visual C#, or C++/CLI that runs on the common language runtime).
I'm using Visual Studio 2012 and the .Net Framework 4.5 I have 2 Solutions: 1) WPF Application 2) Class library (dll) The Class Library contains 3 …
.net visual-studio-2012 assemblies .net-4.5 mixed-modeI get this error message from time to time (not every time) I compile (EDIT: sorry, I didn't make myself …
c++ visual-studio-2015 compiler-errors precompiled-headers mixed-modeI'm currently wrapping a C++ class with C++/CLI for .NET interoperability following the standard process of holding a native …
.net c++-cli wrapper shared-ptr mixed-modeHow can I send a managed object to native function to use it? void managed_function() { Object^ obj = gcnew Object(); …
.net c++-cli unmanaged managed mixed-modeI'm having problems with a slow memory leak in my mixed mode C++/CLR .NET application. (It's C++ native static …
.net c++ memory-leaks mixed-mode