H
High and dRy
Hello,
I created a simple .NET C++ console application. And the
Debug::Assert(false) statement is popping a message box in release
version also. Any idea why ?
Any complier settings I need to do to not show it in release version ?
#include "stdafx.h"
#using <mscorlib.dll>
using namespace System;
using namespace System:iagnostics;
int _tmain()
{
// TODO: Please replace the sample code below with your own.
Console::WriteLine(S"Hello World");
Debug::Assert(false);
return 0;
}
I created a simple .NET C++ console application. And the
Debug::Assert(false) statement is popping a message box in release
version also. Any idea why ?
Any complier settings I need to do to not show it in release version ?
#include "stdafx.h"
#using <mscorlib.dll>
using namespace System;
using namespace System:iagnostics;
int _tmain()
{
// TODO: Please replace the sample code below with your own.
Console::WriteLine(S"Hello World");
Debug::Assert(false);
return 0;
}