温馨提示×

c# readlines能实现异步读取吗

c#
小樊
82
2024-12-10 02:20:29
栏目: 编程语言

是的,C# 中的 ReadLineAsync 方法可以实现异步读取。这个方法属于 System.IO.StreamReader 类,它允许你在读取文件或流时执行非阻塞操作。以下是一个简单的示例,展示了如何使用 ReadLineAsync 异步读取文件中的内容:

using System;
using System.IO;
using System.Threading.Tasks;

class Program
{
    static async Task Main(string[] args)
    {
        string filePath = "example.txt";

        using (StreamReader reader = new StreamReader(filePath))
        {
            string line;
            while ((line = await reader.ReadLineAsync()) != null)
            {
                Console.WriteLine(line);
            }
        }
    }
}

在这个示例中,我们使用 StreamReader 类的 ReadLineAsync 方法异步读取文件中的每一行。当读取到一行时,我们将其输出到控制台。当文件读取完成时,ReadLineAsync 方法将返回 null,循环将结束。

0