Recent Posts

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...

What and why IValidatebleObject in C#

3 minute read

IValidatableObject is an interface in C# that defines a method named Validate, which enables an object to perform custom validation logic. When you implement...