C# - SelectTokens get multiple properties from a JSON structure
I have made a quite a few posts about SelectToken and SelectTokens by now. This post describes how to get two or more properties from a »
I have made a quite a few posts about SelectToken and SelectTokens by now. This post describes how to get two or more properties from a »
NSubstitute is a great framework for mocking objects for tests. I recently had an unexpected behaviour when stubbing a method call. For this simple example we »
You can check if two lists have the same content and in the same sequence using SequenceEqual: var list1 = new List<int> { 1, 2, »
This post demonstrates how to run a piece of code asynchronously in C#. This is easily achieved with the Task library. You can start a new »
Both Lists and Arrays in C# are collections* that can hold simple types, objects and structs. We will start by going through the basics of arrays »
You may have been using other frameworks for mocking and stubbing your HTTP requests - also known as using an "Imposter". This post demonstrates »
In previous versions of .Net the standard was to have a startup.cs file which implemented two methods: * ConfigureServices: Which is responsible for configuring dependency injection. »
You are likely looking for one of these two examples (using hours): var dateTimeMinusOneHour = DateTime.Now.Subtract(TimeSpan.FromHours(1)); var dateTimeMinusOneHour = DateTime.Now.AddHours(-1) »
I have previously written a post on how to return HTML from an ASP.NET controller endpoint. In this post I will take a more general »
C# has great built-in support for making HTTP requests using the HttpClient. Using this client you can Put, Post, Get, Delete and much more using your »