Append to a text file : Text file Write « Stream File « VB.Net Tutorial
- VB.Net Tutorial
- Stream File
- Text file Write
Imports System.IO
Public Class Tester
Public Shared Sub Main
Dim w As StreamWriter
w = File.AppendText("test.txt")
w.Write("it is writing data")
w.WriteLine(1)
w.WriteLine("writeline")
w.WriteLine("True")
w.Close()
End Sub
End Class
| 13.21.Text file Write |
| 13.21.1. | Append to a text file |