每当我输入" |" (垂直条)在源代码编辑器中,Delphi IDE开始挂起。
我尝试添加" |"在使用Delphi打开我的项目之前通过记事本在我的源代码中然后看起来IDE在打开项目时挂起。
示例1(这将起作用):
procedure TForm8.FormCreate(Sender: TObject);
begin
if 1 = 1 then
ShowMessage('True');
end;
示例2(这不起作用):
procedure TForm8.FormCreate(Sender: TObject);
begin
if 1 = 1 then || "1" = "1" then //Whenever I start typing the "|", the IDE starts to hang.
ShowMessage('True');
end;
注意:删除" |"后,Delphi IDE不会挂起我的项目。我的源代码中的(垂直条)通过记事本(在用Delphi打开项目之前)。