Introduction
Expression-bodied methods let you write simple methods in a shorter, cleaner way using just one line.
When a method returns a single value or expression.
When you want to make your code easier to read by reducing clutter.
When the method logic is very simple, like returning a calculation or property.
When you want to write quick helper methods without full method blocks.