The Most Dangerous Line in a .NET Background Worker
Every production system has a few lines of code that look too simple to question.In a .NET background worker, one of them is usually this:
while (true)
{
await DoWorkAsync();
}
It looks ok. It lo
fullstackcity.com12 min read