2020年5月16日 星期六

vb.net console輸出到文件 [Export File]


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Imports System.IO


Module Module1


    Sub Main()


        Dim fs As New FileStream("Test.txt", FileMode.Create)

        ' First, save the standard output.

        Dim sw As New StreamWriter(fs)

        Console.SetOut(sw)

        Console.WriteLine("Hello file454524524")

        sw.Close()


    End Sub


End Module

沒有留言:

張貼留言