It seems SetName() is not working properly for both sections and properties.
Framework BRL.Blitz
Import BRL.StandardIO
Import Text.Ini
Local ini:TIni = TIni.Load("Config.ini")
If Not ini
Throw "Unable to load ini file"
EndIf
Local is:TIniSection = ini.FindSection("system")
If Not is
Throw "Unable to find ini section"
EndIf
Print is.GetName()
is.SetName("testing")
Print is.GetName()
Local ip:TIniProperty = is.FindProperty("foo")
If Not ip
Throw "Unable to find ini property"
EndIf
Print ip.GetName()
ip.SetName("testing")
Print ip.GetName()
Print ip.GetValue()
ip.SetValue("testing")
Print ip.GetValue()
Good evening,
It seems SetName() is not working properly for both sections and properties.
Config.ini
Thanks!