Showing posts from June, 2021
In this blog post, I will show you what HTML web 5 components with real-world examples is. By the end of the blog post, you will learn the following things. What are HTML5 Web Components? What are the different events of the …
In this post, I will discuss the most important concept of C#, called garbage collection. What garbage collection? Garbage collection is a non-deterministic background thread that scans objects in memory on a regular basis and…
This article will show you how to store a 2D array as a 1D array in C#. (This technique can be applied to any language). 2D Row: 1 Col: 1 Row: 1 Col: 2 Row: 1 Col: 3 Row: 2 Col: 1 Row: 2 Col: 2 Row: 2 Col: 3 …
Best Practice for Using HttpClient-C# Almost every application nowadays is making HttpRequest get data from other services. In this article, I will share some best practices for using the .net core HttpClient API. To understan…
What is MediatR library What is Mediator Pattern? What is Command Query Responsibility Segregation (CQRS) How to implement MediatR in .NET Core application Install Mediatr package from NuGet Install MediatR Dependency …