gpt4 book ai didi

用于定时操作的 C# 库

转载 作者:太空狗 更新时间:2023-10-30 01:26:38 25 4
gpt4 key购买 nike

您是否知道任何允许您对一系列操作进行排序的 C# 库,即。每个 Action 在前一个 Action 完成时执行,或者更好的是,在特定时间间隔发生后执行。

谢谢。

最佳答案

http://msdn.microsoft.com/en-us/library/dd537609.aspx

The Task.ContinueWith method let you specify a task to be started when the antecedent task completes.

例子

var task = Task.Factory.StartNew(() => GetFileData())
.ContinueWith((x) => Analyze(x.Result))
.ContinueWith((y) => Summarize(y.Result));

关于用于定时操作的 C# 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4424873/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com