Michael Barber

Results 5 comments of Michael Barber

This looks pretty slick. A couple of observations / questions: 1. Using `ArrayPool` is potentially opening a can of worms. It's absolutely what one _should_ do with C# to help...

Thanks @rbergen -- that's good to have that clarification. `ArrayPool` is a pretty important part of what I use in C# every day :) There are a couple of things...

Hi @davepl - apologies for the delay (time zones - I'm in Ireland) > Are we certain the ArrayPool is not cleared by the system? I mean what if I'm...

I did write my own C# implementation, but it's not different enough to be worth submitting. Feel free to steal anything you like from there if it's useful: https://github.com/mike-barber/daves-garage-primes/tree/csharp-fast-pooled/PrimeCSharp/solution_4 Useful...

> @mike-barber Did you check using bytes rather than 32/64 bit numbers as i found that to be quicker. I did do this previously in my Rust solution, but found...