#dotnet
Read more stories on Hashnode
Articles with this tag
Today, let's dive into the somewhat unpredictable and potentially risky behavior of the C# 8.0 "Using Declaration" feature. As always, no boring long...
Why your IDE matters · Today I was going to post a tweet like "Hey fellow developers, use Rider/Resharper instead of good old Visual Studio because the...
(The same is true for IAsyncEnumerable<T>) A few days ago I came across a code where a developer used .NET MemoryCache to cache data retrieved from...
AutoFixture is an amazing library that simplifies the process of creating test data in .NET. If for some reason you don't use this fantastic tool,...
The ConcurrentDictionary<TKey, TValue> type is commonly used as a thread-safe alternative to the Dictionary<TKey, TValue> type. While the methods of...
How to declare non-nullable immutable properties in records, classes and structs (C# 11). · After taking a break from blogging, I am excited to be back...