Dim file_lines() As String = System.IO.File.ReadAllLines("c:/file.txt")
lone_lines(1) = final_lone
'lone_lines(here is the line number) = final_lone
System.IO.File.WriteAllLines(Add, lone_lines)
It does its work. But I Want to access the same file again later. I want to Close the file writer which remains open.
Any ideas?
Thank you.