Welcome to the world of game server hosting! If you’re new to the concept, you may be wondering what game server hosting is and what…
C# is a Microsoft language that is used to create software with a graphical user interface. It is a successor to C++ and has many…
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…