how to write ArrayList to and read ArrayList from file
something like:
Dim FS As New FileStream(arrayStorePath, FileMode.OpenOrCreate, FileAccess.Write, FileShare.None)
Dim SW As New BinaryWriter(FS)
SW.Write(CurrentArray)
SW.Close()
FS.Close()
the error says that, cannt convert arraylist into string and so on
can any one help me
cheers

