From 56a963bec85bd3bcdfaf26442b8f12c3fc9afa34 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Mon, 4 Oct 2021 21:52:08 +0200 Subject: [PATCH] Improve pattern matching and switch notes --- DotNet/C#/C#.md | 88 +++++++++++++++++++------------------------------ 1 file changed, 33 insertions(+), 55 deletions(-) diff --git a/DotNet/C#/C#.md b/DotNet/C#/C#.md index 00763b9..205d161 100644 --- a/DotNet/C#/C#.md +++ b/DotNet/C#/C#.md @@ -781,6 +781,35 @@ else } ``` +### Pattern Matching + +[Pattern Matching](https://docs.microsoft.com/en-us/dotnet/csharp/pattern-matching) + +A pattern describes one or more criteria that a value can be tested against. It's usable in switch statements, switch expressions and if statements. + +```cs + is Type t // type pattern + is (Type X, Type Y): // positional pattern + is (Type X, _): // positional pattern + discard pattern + is Type {Property: value}: // property patten (check Type and that the property has a certain value) + is Type {Property: value} p: // property patten with output (variable p is usable in the block) + +// constant pattern + is literalValue // e.g. 1, 'c', "literal" + is CONSTANT + is Enum.Value + +// C# 9+ + is pattern and pattern + is pattern or pattern + is not pattern + is { Property: > value } // works with all comparison operators + is > value // works with all comparison operators + +// C# 10+ + is { Property.InnerProperty: value } // match in nested properties +``` + ### Switch The `when` keyword can be used to specify a filter condition that causes its associated case label to be true only if the filter condition is also true. @@ -804,73 +833,22 @@ switch (expr) // code here break; - case Type t: // if expr matches Type result is stored in t local variable to be used in the block - // code here - break; + // cases using pattern matching - case value when(condition): - // code here - break; - - case < value: - // code here - break; - - case <= value and >= value: - // code here - break; - - case > value: - // code here - break; - - dafault: + default: // code here break; } -// return a value absed on the value of an input variable or tuple +// return a value based on the value of an input variable or tuple variable switch { key_1 => value, key_2 => value, + // cases using pattern matching ... _ => default_value // underscore (_) discard pattern as default case }; - -Type func(Type input){ - return input switch - { - key_1 => value, - key_2 => value, - ..., - _ => default_value // underscore (_) discard pattern as default case - }; -} -``` - -### Pattern Mathcing - -[Pattern Mathcing](https://docs.microsoft.com/en-us/dotnet/csharp/pattern-matching) - -A pattern describes one or more criteria that a value can be tested against. - -```cs - is Type t // type pattern - is (Type X, Type Y): // positional pattern - is (Type X, _): // positional pattern + dicard pattern - is Type {Property : value}: // property patten (check Type and that the property has a certain value) - is Type {Property : value} p: // property patten with output (variable p is usable in the block) - -// constant pattern - is literalValue // e.g. 1, 'c', "literal" - is CONSTANT - is Enum.Value - -// C# 9+ - is pattern and pattern - is pattern or pattern - is not pattern ``` ## Loop Statements