Answer: It all depends on the man. Take your circle of friends and colleagues as an example. Some of them are senior developers at 25. Some of them are junior at the age of 40. It all depends on...
Posts by Kristijan Kralj
Resharper is a tool for software developers which is used for refactoring and code rewriting. It is used for maintaining the code in the best possible shape and condition. Since ReSharper is a...
Comments in code have more than one purpose. Good comments can make code easier to understand, but it’s also important to use comments to help you maintain the code over time. The following 6...
3 Exciting Methods for Dependency Injection With Inheritance in C#
Inheritance is a powerful tool that can save time and enforce program structure, but it's also one that developers frequently abuse. In particular, it can increase maintenance costs when used with...
If you've ever worked on a software project, you're probably familiar with the feeling of having all your work done and ready to deliver but not being able to do so because of a series of small tasks...
Who hasn't had a bug in their code that happened once every year, but they couldn't reproduce it? That bug was probably caused by using DateTime.Now in their code, and if you debug it, it won't...