-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path05PatternMatching.cs
81 lines (70 loc) · 2.22 KB
/
05PatternMatching.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
using System;
namespace CSharp7Console
{
public class PatternMatching
{
private enum ShapeType
{
Circle,
Rectange
}
private class Shape { }
private class Circle : Shape { public int Radius => 100; }
private class Rectangle : Shape
{
public int Length => 100;
public int Height => 120;
}
private static Shape GetShapeFactory(ShapeType style)
{
switch (style)
{
case ShapeType.Circle:
return new Circle();
case ShapeType.Rectange:
return new Rectangle();
default:
return null;
}
}
public static void SwitchPatternMatchingExample()
{
var shape = GetShapeFactory(ShapeType.Rectange);
switch (shape)
{
case Circle c:
Console.WriteLine($"circle with radius {c.Radius}");
break;
case Rectangle s when (s.Length == s.Height):
Console.WriteLine($"{s.Length} x {s.Height} square");
break;
case Rectangle r:
Console.WriteLine($"{r.Length} x {r.Height} rectangle");
break;
default:
Console.WriteLine("<unknown shape>");
break;
case null:
throw new ArgumentNullException(nameof(shape));
}
}
private static object GetMultipler()
{
return 100;
}
public static void PatternMatchingExample()
{
var o = GetMultipler();
if (o is null) return;
if (o is int i || o is string s && int.TryParse(s, out i))
{
//Why is s not valid??
//Console.WriteLine($"Multipler is a string with the value {s}");
Console.WriteLine($"Multipler is set {i} {new string('*', i)}");
}
//Illegal as outside the scope of the braces.
//Console.WriteLine($"Multipler is set {i}");
}
}
}