All posts tagged “Professional Development

Professional Development – 2023 – Week 15

.NET Why Microsoft Made Their New Frozen Collections Slower (via Nick Chapsas) From a previous video, we learned about .NET 8 having FrozenDictionary and FrozenSet that are immutable (only support reading). However, to create these read-optimized collections, you pay for…

Professional Development – 2023 – Week 9

.NET Random Finally Gets Its Missing Methods in .NET 8 (via Nick Chapsas) Currently .NET has Random.Shared for non-critical random numbers, and RandomNumberGenerator for secure operations. The latter is about 7x slower. .NET 8 brings in Random.Shared.Shuffle() and Random.Shared.GetItems(source, number…