B
Brian Henry
In C++ you can tell if a program iscompiled as debug or release with special
tags... if the compiler is compileing in release mode it will include the
code in the release tag only and in debug mode the debug code only... so you
can have something like this
void main(void)
{
#RELEASE
cout >> "Release compiled";
#ENDRELEASE
#DEBUG
cout >> "Debug compiled";
#ENDDEBUG
}
that of course is just a psuedo code example, is there any way to do this in
VB.net? thanks
tags... if the compiler is compileing in release mode it will include the
code in the release tag only and in debug mode the debug code only... so you
can have something like this
void main(void)
{
#RELEASE
cout >> "Release compiled";
#ENDRELEASE
#DEBUG
cout >> "Debug compiled";
#ENDDEBUG
}
that of course is just a psuedo code example, is there any way to do this in
VB.net? thanks