i have a textfile in utf-8 and this code but the list is not sorted. (7.80)
i put a A at top of the file and a Z an the end.
i put a A at top of the file and a Z an the end.
B4X:
Dim problems As List = File.ReadList(File.DirAssets,"problems.txt")
problems.Sort(True)
Dim i As Int
For i = 0 To problems.Size-1
Log(problems.Get(i))
Next