Registriert seit: 5. Mai 2008
940 Beiträge
FreePascal / Lazarus
|
Re: TStringList im with übergeben
11. Feb 2010, 18:49
Warum geht das nicht? Ich habe damit keine Probleme:
Delphi-Quellcode:
with TStringList.Create do try
...
test(Self);
...
finally
Free;
end;
|