#benchmark
Read more stories on Hashnode
Articles with this tag
When initialising an empty array in your codebase, there are two options you would choose from: new T[0] or Array.Empty<T>(). This benchmark is to...