extension methods in dotnet

Understanding Extension Methods in .Net

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
conditional operators

Single Line Conditional Operators in .Net

Do 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