如何在Visual Basic中使用while循环读取StreamReader?

时间:2009-11-11 10:06:32

标签: vb.net

考虑:

Dim line As String
Using readFile As New StreamReader(SalesUpdateFile)

While (line = readFile.ReadLine) IsNot Nothing

我是Visual Basic的新手。每次我运行这段代码都会给我这个错误:

  

“IS”需要具有引用类型

的操作数

如何解决此问题?

4 个答案:

答案 0 :(得分:3)

您不能在VB中将赋值用作表达式。相反,你应该做类似的事情:

line = readFile.ReadLine
While (line IsNot Nothing)
    'process the line
     line = readFile.ReadLine
End While

答案 1 :(得分:2)

您的代码中的while循环是特定于C#的习惯用法。在MSDN上查看这个与VB.NET等效的示例:

StreamReader Class

答案 2 :(得分:2)

虽然Konamiman的答案非常好,但我不喜欢repeat myself,因此,更喜欢以下模式以避免重复调用Do Dim line = reader.ReadLine() If line Is Nothing Then Exit Do ' Process the line Loop

{{1}}

答案 3 :(得分:0)

Do
     Dim line = reader.ReadLine()           
     ' Process the line
Loop until line is Nothing