From 7cade4fc2addb8bd8706644ffdc0d6127547c16a Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Wed, 16 Nov 2022 13:40:46 +0100 Subject: [PATCH] feat(dotnet): add list patterns notes --- docs/dotnet/C#/C#.md | 43 ++++++++++++++++++++++++++++++++++--------- 1 file changed, 34 insertions(+), 9 deletions(-) diff --git a/docs/dotnet/C#/C#.md b/docs/dotnet/C#/C#.md index 297f334..9b3b573 100644 --- a/docs/dotnet/C#/C#.md +++ b/docs/dotnet/C#/C#.md @@ -825,31 +825,55 @@ else ### Pattern Matching -[Pattern Matching](https://docs.microsoft.com/en-us/dotnet/csharp/pattern-matching) +[Pattern Matching](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/patterns) 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 +// type pattern is Type t // type pattern + +// positional 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) + is (Type X, _): // discard pattern + +// property pattern + is Type { Property: value }: // is type and property has a certain value + is Type { Property: value } out: // output variable is usable in the block + is { Property.InnerProperty: value } // match nested properties // constant pattern is literalValue // e.g. 1, 'c', "literal" is CONSTANT is Enum.Value -// C# 9+ +// logical patterns + is not pattern 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+ +// relational pattern + is > value + is < value + is <= value + is >= value + +// multiple value & nested value patterns is { Property.InnerProperty: value } // match in nested properties + is { Property1 : value1, Property2: value2 } // multiple inputs + is (value1, value2) // multiple inputs (with deconstruction) + +// multiple values and relations + is ( > value1, > value2), + is { Property1: > value1, Property2: > value2 } + +// list patterns + is [value1, value2, value1] // positional match + is [value1 or value2, <= value3, >= value4] // relational comparison + is [< 0, .. { Length: 2 or 4 }, > 0] // item property match + is [_, var middle, _] // discarding & capturing + is [value1, .., valueN] // match any number of items + is [value1, .. var rest] // capture any number of items ``` ### Switch @@ -1352,6 +1376,7 @@ public struct Point ``` > **Note**: From C# 10 is possible to have a parameterless constructor and make a new struct using a `with` statement. +> **Note**: From C# 11 uninitialized values will be filed with their defaults The only way to affect a struct variable both inside a method and outside is to use the `ref` keyword;