C# Feature � Properties with validation
Overview
Section titled “Overview”Add guard clauses in setters to enforce invariants and provide useful errors.
Example
Section titled “Example”public class Person{    private int _age;    public int Age    {        get => _age;        set        {            if (value < 0 || value > 120)                throw new ArgumentOutOfRangeException(nameof(value), "Age must be between 0 and 120.");            _age = value;        }    }}- For cross-property validation, consider factory methods or 
init-only setters with constructor validation. - For data-binding, raise 
INotifyPropertyChangedafter successful assignment.