Aleksei Zagoskin
Aleksei Zagoskin

Aleksei Zagoskin

Follow
Follow
homenewsletter
Tag

C#

#csharp

More content

Read more stories on Hashnode


Articles with this tag

Dangerous Using Declaration (C# 8.0)

Oct 9, 20233 min read

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...

Dangerous Using Declaration (C# 8.0)

ChatGPT-4 outperformed 90% of developers

Apr 22, 20233 min read

The title may sound bold and clickbait-ish, but it is what it is... A few days ago I stumbled upon a post on LinkedIn (unfortunately, I didn't save...

ChatGPT-4 outperformed 90% of developers

Visual Studio 2022 vs Rider vs ChatGPT-4

Apr 16, 20236 min read

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...

Visual Studio 2022 vs Rider vs ChatGPT-4

⚠️ Warning: Don't cache lazy IEnumerable<T> in .NET

Feb 10, 20232 min read

(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...

⚠️ Warning: Don't cache lazy IEnumerable<T> in .NET

AutoFixture Tips and Tricks

Feb 1, 20233 min read

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,...

AutoFixture Tips and Tricks

Lazy thread-safe delegate for ConcurrentDictionary in C#

Jan 26, 20233 min read

The ConcurrentDictionary<TKey, TValue> type is commonly used as a thread-safe alternative to the Dictionary<TKey, TValue> type. While the methods of...

Lazy thread-safe delegate for ConcurrentDictionary in C#