
0
Empty then block
Samples:
if Condition() then ;// See last symbol before comment
begin
SomeCode; //this line executed in all cases
end;
or
if Condition() then
begin
//SomeCode;
end else begin
//SomeOtherCode;
end;
or
if not Condition() then
else
begin
SomeCode;
end;
Customer support service by UserEcho