C# - How to convert a list of tuples into a dictionary using the ToDictionary method
There is a built-in method in C# where you can create a dictionary from a list - it is called ToDictionary [https://docs.microsoft.com/en-us/ »
There is a built-in method in C# where you can create a dictionary from a list - it is called ToDictionary [https://docs.microsoft.com/en-us/ »
I recently found out that my blog was slow according to google pagespeed. I scored below 50, but I could have sworn that when I created »
I have now created a twitter account for my blog. Perhaps I should have done this years ago but I have always been against sharing my »
It can be hard to grasp what software architecture is as it encompasses a wide range of theoretical and practical disciplines. It ranges from describing how »
There are not many definitions of monoliths out there and they are often portrayed as the opposite of a microservice architecture or what not to do. »
It is quite easy to start a new thread in C#. All you need is to instantiate a new object of the type Thread and call »
The Triple A (AAA) abbreviation: Arrange, Act and Assert is a way to structure your unit tests into 3 sections: * Arrange: Assign variables, setup stubs, mocks »
In this post I will demonstrate how you can stub the DateTime [https://docs.microsoft.com/en-us/dotnet/api/system.datetime?view=netcore-3.1] struct in »
I will start with a small disclaimer: it is always up to the client how to handle redirects. Most of the time they handle status codes »
Understanding HTTP Status Codes When you interact with a website or application, your browser and the server communicate using HTTP (Hypertext Transfer Protocol). An important part »