Faster List.ToArray() and Copying in C#
One of my pet peeves is not using hardware to its fullest ability, such as all of memory bandwidth available. Copying is one of the simplest operations, which is memory bandwidth bound, and should use most of memory bandwidth. In this blog, I’ll examine C# copy operations from List to Array, to see how fast […]
Read more "Faster List.ToArray() and Copying in C#"