It looks like TSection.Get() does not work as expected in cases where the property is a "" (empty string)
When I store the empty string to an INI file, the key exists.
' INI.File:
....
[Seite1]
Name=
...
But when I now try to read back the empty string, I get a NULL:
Function GetName (Section:TIniSection, Key:String)
Local Name:String = Section.Get(Key)
if Name=NULL Then runtimeerror "no such key"
Print "!" + Name+ "!"
I would expect to get back an empty string, but I receive a Runtime Error