Rajasekar
Rajasekar Blog

Rajasekar Blog

Follow
Follow
homeSupport mebadgesnewsletter
Tag

.NET

#net

More content

Read more stories on Hashnode


Articles with this tag

New Features in .NET 8 (with examples)

Jun 27, 20233 min read

.NET 8 is the next major release of the .NET platform. It brings several new features that improve the developer experience and productivity. Here are...

New Features in .NET 8 (with examples)

Asynchronous Programming with async/await in C# (with simple example)

Jun 11, 20233 min read

Asynchronous programming with async and await keywords in C# allows you to write code that can execute concurrently(parallelly) without blocking the...

Asynchronous Programming with async/await in C# (with simple example)

Parallel.ForEach with HttpClient in C#

Apr 2, 20233 min read

Use case: we want to call remote server asynchronously to get the data for an array of inputs. To improve the performance we have decided to use...

Parallel.ForEach with HttpClient in C#