ParallelHelper icon indicating copy to clipboard operation
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...

Results 2 ParallelHelper issues
Sort by recently updated
recently updated
newest added

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...