using System.Threading.Tasks;
static public void Main()
using (var cts = new CancellationTokenSource(100))
Console.WriteLine("In the version with a token passed to run");
cts.Token.ThrowIfCancellationRequested();
Console.WriteLine(t.Status);
using (var cts = new CancellationTokenSource(100))
Console.WriteLine("In the version without a token passed to run");
cts.Token.ThrowIfCancellationRequested();
Console.WriteLine(t.Status);