Forum Discussion
Rober2024
Jul 31, 2024Copper Contributor
do-while in parallel
Good morning: I have a code in C# Framework 4.8 that has a rather heavy do-while. I would like to know if there is a way to run it in parallel like for or foreach, which have their parallel versions...
Arabidopsis
Aug 13, 2024Copper Contributor
Parallel does not support do while, but you can use Parallel To achieve the exact same functionality, but with some complexity.