C++ Builder Index
Place the cursor before any { or } and
press either Alt-[ or Alt-]
to make the cursor jump to the matching curly brace.
Try...Finally
Try...Finally is poorly documented.
Only one of catch, __finally, or __except
is allowed per try block.
A single try block can have multiple catch blocks.
finally (without the 2 underscores) is supposed to work,
but doesn't.
try { } catch (int i) { } catch (float i) {}
try { } __finally { }
try { } __except { }
Function calls require ().
However, there is no compiler error if they are omited!
Author: Robert Clemenzi -
clemenzi@cpcug.org