ParallelHelper
ParallelHelper copied to clipboard
Parallel Helper is a static code analyzer for C# projects that supports the development of parallel and asynchronous code. The analyzer is built with the help of the .NET Compiler Platform (Roslyn) an...
I don't really know if my usage of the CancellationToken is misguided, but I've been facing several instances of a possible false positive on PH_P007 when using Parallel.ForEachAsync combined with...
Synchronization in the constructor is usually unnecessary since the constructor completes before any other operation on the object's members can be made (given that there are no data races in...