.net5vb怎么读取文件
时间: 2023-02-09 08:08:47 浏览: 129
在 .NET 5 中使用 VB 读取文件可以使用 File IO 类。下面是一个示例代码:
```vb
Imports System.IO
Module Module1
Sub Main()
Dim filePath As String = "C:\example.txt"
Dim fileContent As String
fileContent = File.ReadAllText(filePath)
Console.WriteLine(fileContent)
End Sub
End Module
```
上面的代码使用了 File.ReadAllText 方法来读取文件内容并将其赋值给变量 fileContent。如果需要读取文件的一部分,还可以使用 File.ReadLines 方法或者 FileStream 类。
阅读全文