---
moment bitte muss was ändern/testen
Zitat:
;comment line
[testsection]
;not=parsed
testident=testvalue ;test
Delphi-Quellcode:
var
Test: TMemIniFile;
begin
Test := TMemIniFile.Create('TestDatei.txt');
try
ShowMessage(Test.ReadString('testsection', 'testident', ''));
finally
Test.Free;
end;
Ok das funktioniert. ;test bleibt erhalten und wegen ;not=parsed gibt es keine Probleme. Ein ReadSections ignoriert ;not=parsed ebenfalls und ;comment line wird auch ignoriert. Also alles OK.