So I have a list
dim list1 as list
then I add 3 booleans
list1.add(false)
list1.add(true)
list1.add(false)
then I save the list
File.WriteList(File.DirDefaultExternal, "mylist", list1)
then later I read the list
list1.clear()
list1 = File.ReadList(File.DirDefaultExternal, "mylist")
My issue is it seems this list is now of type String and not boolean
How do people deal with this??
I searched and found no answers.
Richard.
dim list1 as list
then I add 3 booleans
list1.add(false)
list1.add(true)
list1.add(false)
then I save the list
File.WriteList(File.DirDefaultExternal, "mylist", list1)
then later I read the list
list1.clear()
list1 = File.ReadList(File.DirDefaultExternal, "mylist")
My issue is it seems this list is now of type String and not boolean
How do people deal with this??
I searched and found no answers.
Richard.