A blockchain engineer is a professional who designs and builds blockchain applications. If you want to become a blockchain engineer, you need to have a…
Job seekers often want to move closer to the job, but they don’t know how to ask for help with relocation. Most employers do not…
So, you have heard of Dependency injection (DI) and Inversion of Control (IoC) but are having a hard time grasping the concept? Well you’re not…
Lambda expressions, delegates, predicates and closures – complicated sounding terms that in fact are easy to grasp once you actually understand what they mean and…
1) async / await Use the async / await-pattern to allow unblocking of the UI / current thread when execution blocking operations. The async /…
A problem that can occur when creating unit tests is that you’ve got a private set:er for a property that you need to write data…
Once you’ve started working with unit testing, chances are that you never want to work without it again. I find that the biggest benefit is…
A few features of the enum concept in C#… Create enum public enum Names { Robert, //Will get 0 as value Julia, //Will get 1…
Let’s say that you need to implement an interface that contains an (async) method returning Task<T>: public interface IGetInt { Task<int> GetIntAsync(); //… } But…
Exception filters was added in C# 6 and is a nice feature that lets you decide weather to actually catch an exception or not. The…