32
1
using System;
2
using System.Threading.Tasks;
3
using System.Collections.Generic;
4
using System.Linq;
5
6
public class Program
7
{
8
public static void Main()
9
{
10
var source = new List<int>{ 1, 2, 3, 4, 5 };
11
var source2 = new List<int>();
12
13
var tasks = source.Select(x => Task.Run(() => Console.WriteLine(x)));
14
var tasks2 = source2.Select(x => Task.Run(() => Console.WriteLine(x)));
15
16
var res = Extensions.Append<Task>(tasks, tasks2);
17
18
Console.WriteLine("Total tasks:" + res.Count());
19
Task.WaitAll(res.ToArray());
20
21
Console.WriteLine("Done");
22
}
23
24
public static class Extensions
25
{
26
public static IEnumerable<T> Append<T>(IEnumerable<T> source, IEnumerable<T> items)
27
{
28
source.ToList().AddRange(items);
29
return source;
30
}
31
}
32
}
Cached Result