风清月

task开启异步方法

电脑版发表于:2020/2/6 20:59

task开启异步方法可以使用async () =>{}

例如:

Task.Run(async () =>
{
    using (var fs = new FileStream("写获取的数据的文件路径", FileMode.Create)) // 新建一个文件流用于存放我们获取到数据
    {
        while (await requestStream.MoveNext()) // 迭代
        {
            requestStream.Current.Content.WriteTo(fs); // 将数据写入到文件流中
        }
    }
});


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢