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 237 views
1 answer 294 views
1 answer 209 views
2 answers 286 views
1 answer 298 views
1 answer 212 views
1 answer 290 views
...