>
> Task(()=> { ... do stuff }).Start()
>
>From Framework 4.5 you have the slightly neater looking:
Task.Run(() => { ...DoStuff... });
*GK*
>
> Task(()=> { ... do stuff }).Start()
>
>From Framework 4.5 you have the slightly neater looking:
Task.Run(() => { ...DoStuff... });
*GK*