+ - 0:00:00
Notes for current slide
Notes for next slide

Advanced Pattern Matching in C#

Advanced Pattern Matching in C#

Oliver Sturm • @olivers[@fosstodon.org] • oliver@oliversturm.com

1 / 11

Advanced Pattern Matching in C#

Oliver Sturm

  • Training Director at DevExpress
  • Consultant, trainer, author, software architect and developer for 30 years

  • Contact: oliver@oliversturm.com

2 / 11

Advanced Pattern Matching in C#

Agenda

  • Basics - so we're on the same page
  • Several real use cases from FCSlib
  • Be like Haskell
3 / 11

Advanced Pattern Matching in C#

Pattern Matching - C# Versions

  • C# 7: value is Type t, also in switch
  • C# 8: switch expressions, property, tuple, positional patterns, deconstruction
  • C# 9: logical (and, or, not), relational (operators) and structural (parens) enhancements
  • C# 10: nested property patterns
  • Future, potentially: list patterns (e.g. is [1,2,3])
4 / 11

Advanced Pattern Matching in C#

Demo

Basic Pattern Matching

5 / 11

Advanced Pattern Matching in C#

FCSlib examples

  • Construct a tuple as needed to match with a positional pattern
  • Replace ternary expressions?
  • Combine matching methods (property and type patterns) to cover different cases efficiently
  • Relational pattern to deal with Comparer<T>
6 / 11

Advanced Pattern Matching in C#

Demo

FCSlib examples

7 / 11

Advanced Pattern Matching in C#

Be like Haskell

data Color = R | B
data RedBlackSet a = E | T Color (RedBlackSet a) a (RedBlackSet a)
balance B (T R (T R a x b) y c) z d = T R (T B a x b) y (T B c z d)
balance B (T R a x (T R b y c)) z d = T R (T B a x b) y (T B c z d)
balance B a x (T R (T R b y c) z d) = T R (T B a x b) y (T B c z d)
balance B a x (T R b y (T R c z d)) = T R (T B a x b) y (T B c z d)
balance color a x b = T color a x b
8 / 11

Advanced Pattern Matching in C#

Demo

Be like Haskell

9 / 11

Advanced Pattern Matching in C#

Thank You

Please feel free to contact me about the content anytime.

Oliver Sturm • @olivers[@fosstodon.org] • oliver@oliversturm.com

11 / 11

Advanced Pattern Matching in C#

Oliver Sturm

  • Training Director at DevExpress
  • Consultant, trainer, author, software architect and developer for 30 years

  • Contact: oliver@oliversturm.com

2 / 11
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow