Invert Boolean
No comments..
function InvertBoolean(Value: Boolean):Boolean;
begin
if Value then Result := False
else Result := True;
end;
No comments..
function InvertBoolean(Value: Boolean):Boolean;
begin
if Value then Result := False
else Result := True;
end;
12.10.2009 в 19:33
Захочешь - не придумаешь. Это реально круто!