How to Dump Object for Debugging Purposes in C#?
Explaining 3 ways to dump object in c# , including the Object Dumper, Json Serializer and Yaml Serializer
Read MoreLearn. Code. Listen
Explaining 3 ways to dump object in c# , including the Object Dumper, Json Serializer and Yaml Serializer
Read More
Exception handling is a very important topic that is sometimes not properly understood or less used. In this article, I will explain to you about the Exceptions, and how to …
Read More
You might have already heard about asynchronous programming or async / await, either in .Net or some other language. In this article I will try to explain it to you, …
Read More
Generics is a great concept in programming languages that was added to .Net 2.0 , it introduces the parameter T to types and methods. Generics improve code reusability, enforces type safety and prevents performance overhead of boxing/unboxing.
Read More
In this article, I will be explaining the difference between using String and StringBuilder when dealing with your string values. and in which cases you should never use String. and other cases where StringBuilder is not the optimal solution.
Read More
Extension 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 More