Hello,
I am using VAX 1531 and VS2005 Pro German. If I write the following code (C++/CLI), the "finally" keyword is underlined as unknown/wrong sympol/expression, but it shouldn't:
try
{
// do something
}
finally
{
// do cleanup
}
only if I add a catch-block, finally is not underlined:
try
{
// do something
}
catch(Exception ^)
{
// handle exception
}
finally
{
// do cleanup
}
Regards Daniel