
Mahedee Hasan
I am a Microsoft MVP (8th times), programmer, software developer, software architect, consultant, author, researcher, technical blogger, technical speaker, trainer and learner. I have more than 15 years experience in the field of software design and development.
You May Also Enjoy
Singleton design pattern using C#
5 minute read
The Singleton pattern is a design pattern that restrict to create object more than once and provides a global point of access to that instance. This pattern ...
JavaScript setInterval method with some example
1 minute read
Extension methods are a powerful feature in C# that allows developers to add new functionality to existing classes without modifying the original source code...
Extension Methods in C# - An Introduction with Examples and Output
4 minute read
Extension methods are a powerful feature in C# that allows developers to add new functionality to existing classes without modifying the original source code...
Introduction to the Yield Statement
2 minute read
The yield statement is a powerful construct in C# that allows you to create custom iterators. It allows you to define a method that returns a sequence of val...