
9 Bulletproof Ways to Become a Better Developer
In this article I will be explaining 9 bulletproof ways to become a better developer. Make sure to follow these methods and stay dedicated.
Read MoreLearn. Code. Listen
In this article I will be explaining 9 bulletproof ways to become a better developer. Make sure to follow these methods and stay dedicated.
Read MoreThe BackgroundWorker is an event-driven way to perform an operation on a separate and dedicated thread. The BackgroundWorker is mostly used when you need to show the user a friendly progress while you are operating a long running process such as downloading files, connecting to database and getting results…etc. The idea behind the BackgroundWorker comes from its name; it processes some operations in the background and any other operation can be performed in parallel meanwhile.
Read MoreDisplaying friendly names for enumeration elements using the Description annotation
Read MoreExtension methods is a great feature in .Net that allows developers to add or extend methods of existing types or classes and call them naturally, as if they are part of these types or classes
Read MoreDo you know that you can write a nested conditional statement in .net with true and false sides in a single line of code? Yes, this is possible. It can …
Read More