I have a problem when the new .Net Framework (version 4.5) is installed. I am working on a plugin assembly that is accessed through native code. The library is build using Visual Studio 2010 and with .NET 4.0 as target plattform.
The following code snippet throws an exception in .NET 4.5 and is working fine in .NET 4.0. Any idea how to fix this issue?
#pragma managed(push, off)
#pragma managed(push, on)
static bool ManagedTestFunction() {
return false;
}
#pragma managed(pop)
static void CheckIfManagedUnmanagedTransitionIsPossible()
{
try
{
ManagedTestFunction();
}
catch (...)
{
throw misc::mwException(0, _T("The program is not working if .NET Framework 4.5 is installed. Please revert to previous version .NET 4.0!"));
}
};
Best regards
Michael