How to write to text file with using statement in VB.NET

1 Answer

0 votes
Imports System.IO

Module Module1

    Sub Main()

        Using tw As TextWriter = File.CreateText("d:\\data.txt")
            tw.WriteLine("line one")
            tw.WriteLine("line two")
        End Using

    End Sub

End Module

' run:
' 

 



answered May 13, 2016 by avibootz

Related questions

1 answer 232 views
1 answer 291 views
1 answer 206 views
2 answers 282 views
1 answer 294 views
1 answer 209 views
1 answer 285 views
...