Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/339.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# Winforms或ASP.NET是否有开源任务运行程序?_C#_Asp.net_Winforms_Dialog - Fatal编程技术网

C# Winforms或ASP.NET是否有开源任务运行程序?

C# Winforms或ASP.NET是否有开源任务运行程序?,c#,asp.net,winforms,dialog,C#,Asp.net,Winforms,Dialog,这在任何地方都可以作为开源组件使用吗 如果我的表单或页面(winforms或asp.net)背后的代码执行以下操作: var pidList = PidsToSynch; pidList.AsParallel().ForAll(pid => { // do a task that either succeeds or fails // independently of other tasks } 然后我希望最终用户看到如下内容: var pidList = PidsToSyn

这在任何地方都可以作为开源组件使用吗

如果我的表单或页面(winforms或asp.net)背后的代码执行以下操作:

var pidList = PidsToSynch;
pidList.AsParallel().ForAll(pid =>
{
   // do a task that either succeeds or fails
   // independently of other tasks
}
然后我希望最终用户看到如下内容:

var pidList = PidsToSynch;
pidList.AsParallel().ForAll(pid =>
{
   // do a task that either succeeds or fails
   // independently of other tasks
}

Quartz;)