Concept Flow - Switch expression (modern C#)
Start with input value
Evaluate switch expression
Match input to pattern/case
Return corresponding result
End with output value
The switch expression takes an input, matches it against patterns, and returns the result of the matched case.