Implicit Task Parallelism

suggest change
private static void Main(string[] args)
{
    var a = new A();
    var b = new B();
    //implicit task parallelism
    Parallel.Invoke(
        () => a.DoSomeWork(),
        () => b.DoSomeOtherWork()
        );
}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents