Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

How to determine whether Task.Run is completed within a loop in c#

System.Threading.Tasks.Task
.Run(() => 
{
    // simulate processing
    for (var i = 0; i < 10; i++)
    {
        Console.WriteLine("do something {0}", i + 1);
    }
})
.ContinueWith(t => Console.WriteLine("done."));
 
PREVIOUS NEXT
Tagged: #How #determine #completed #loop
ADD COMMENT
Topic
Name
2+5 =