我有一个文本阅读器,一次读一行。如何在 Vb 2008 express 中执行此操作?
问问题
84 次
1 回答
1
您将需要查看 System.IO 命名空间File.ReadLines
中将返回的函数,IEnumerable(Of String)
然后您可以对其进行迭代。
Imports System.IO
Module Module1
Sub Main()
Dim lines As IEnumerable(Of String) = File.ReadLines("Your File Path Here")
For Each line As String In lines
Console.WriteLine(line)
Next
Console.ReadLine()
End Sub
End Module
于 2013-10-22T03:17:10.113 回答