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 227 views
1 answer 285 views
1 answer 198 views
2 answers 277 views
1 answer 290 views
1 answer 205 views
1 answer 278 views
...