Reading a csv file with the following code, I'm not able to get proper data.
Application_Start
<B4IList: (
"<B4IArray: 0x1666b6a0>",
"<B4IArray: 0x16630b30>",
"<B4IArray: 0x16631410>",
"<B4IArray: 0x1665cda0>",
"<B4IArray: 0x166275e0>"
)>
Application_Active
B4X:
Dim su As StringUtils
Dim Table As List
If File.Exists(File.DirDocuments, "em.csv") = False Then
File.Copy(File.DirAssets, "em.csv", File.DirDocuments, "em.csv")
Else
Table = su.LoadCSV(File.DirDocuments, "em.csv", ",")
Log(Table)
End If
Application_Start
<B4IList: (
"<B4IArray: 0x1666b6a0>",
"<B4IArray: 0x16630b30>",
"<B4IArray: 0x16631410>",
"<B4IArray: 0x1665cda0>",
"<B4IArray: 0x166275e0>"
)>
Application_Active