Skip to content

Instantly share code, notes, and snippets.

@dimitris-papadimitriou-chr
Created July 10, 2020 04:14
Show Gist options
  • Select an option

  • Save dimitris-papadimitriou-chr/07c3d7e20a68237c6cdcac2cedfb5fdd to your computer and use it in GitHub Desktop.

Select an option

Save dimitris-papadimitriou-chr/07c3d7e20a68237c6cdcac2cedfb5fdd to your computer and use it in GitHub Desktop.
string GetShapeDescription1(Shape shape) =>
shape switch
{
Rectangle { Height: var h, Width: var w } => $"Found {h }x {w} rectangle",
Circle { Radius: var r } => $"found a circle with radius {r}",
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment