D
DaTurk
Hi, I want to define a very large catch clause in a pound define.
I've done this, and it compiles, but when I try to incorporate it into
the code I'm having issues.
#define CATCH_THING{
catch(Exception ^ ex) \
{ \
<Do Something> \
}\
}
try
{
<Some Code>
}
CATCH_THING
What am I doing wrong?
I've done this, and it compiles, but when I try to incorporate it into
the code I'm having issues.
#define CATCH_THING{
catch(Exception ^ ex) \
{ \
<Do Something> \
}\
}
try
{
<Some Code>
}
CATCH_THING
What am I doing wrong?