Skip to content

Commit fd55c96

Browse files
committed
Pattern Matching (csharp-7.0 & csharp-8.0)
1 parent c80ea7e commit fd55c96

File tree

3 files changed

+169
-5
lines changed

3 files changed

+169
-5
lines changed

CsharpLangExamples.sln

+20-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StaticLocalFunctions", "StaticLocalFunctions\StaticLocalFunctions.csproj", "{4FDEFE2B-68F7-400A-ADEE-46743108B6D1}"
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30011.22
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StaticLocalFunctions", "StaticLocalFunctions\StaticLocalFunctions.csproj", "{4FDEFE2B-68F7-400A-ADEE-46743108B6D1}"
47
EndProject
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DefaultInterfaceMethods", "DefaultInterfaceMethods\DefaultInterfaceMethods.csproj", "{67A35B37-E6B3-4826-A338-C5B59654F4A7}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DefaultInterfaceMethods", "DefaultInterfaceMethods\DefaultInterfaceMethods.csproj", "{67A35B37-E6B3-4826-A338-C5B59654F4A7}"
69
EndProject
7-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NumericLiteralSyntaxImprovements", "NumericLiteralSyntaxImprovements\NumericLiteralSyntaxImprovements.csproj", "{3786ADEF-0A44-4423-93A9-22C7535199A7}"
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NumericLiteralSyntaxImprovements", "NumericLiteralSyntaxImprovements\NumericLiteralSyntaxImprovements.csproj", "{3786ADEF-0A44-4423-93A9-22C7535199A7}"
811
EndProject
9-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TupleTypes", "TupleTypes\TupleTypes.csproj", "{8258CFCE-03B8-4EB0-AF78-EAA7F88F4227}"
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TupleTypes", "TupleTypes\TupleTypes.csproj", "{8258CFCE-03B8-4EB0-AF78-EAA7F88F4227}"
1013
EndProject
11-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AsynchronousStreams", "AsynchronousStreams\AsynchronousStreams.csproj", "{4B90F64C-6005-45C4-86A0-DDCFD702D780}"
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AsynchronousStreams", "AsynchronousStreams\AsynchronousStreams.csproj", "{4B90F64C-6005-45C4-86A0-DDCFD702D780}"
15+
EndProject
16+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PatternMatching", "PatternMatching\PatternMatching.csproj", "{2EDA8274-2C25-4D94-8BE5-10B7AC7AABD4}"
1217
EndProject
1318
Global
1419
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -36,5 +41,15 @@ Global
3641
{4B90F64C-6005-45C4-86A0-DDCFD702D780}.Debug|Any CPU.Build.0 = Debug|Any CPU
3742
{4B90F64C-6005-45C4-86A0-DDCFD702D780}.Release|Any CPU.ActiveCfg = Release|Any CPU
3843
{4B90F64C-6005-45C4-86A0-DDCFD702D780}.Release|Any CPU.Build.0 = Release|Any CPU
44+
{2EDA8274-2C25-4D94-8BE5-10B7AC7AABD4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
45+
{2EDA8274-2C25-4D94-8BE5-10B7AC7AABD4}.Debug|Any CPU.Build.0 = Debug|Any CPU
46+
{2EDA8274-2C25-4D94-8BE5-10B7AC7AABD4}.Release|Any CPU.ActiveCfg = Release|Any CPU
47+
{2EDA8274-2C25-4D94-8BE5-10B7AC7AABD4}.Release|Any CPU.Build.0 = Release|Any CPU
48+
EndGlobalSection
49+
GlobalSection(SolutionProperties) = preSolution
50+
HideSolutionNode = FALSE
51+
EndGlobalSection
52+
GlobalSection(ExtensibilityGlobals) = postSolution
53+
SolutionGuid = {A7F212DA-5C27-4898-84D7-BBB38B4C9FFF}
3954
EndGlobalSection
4055
EndGlobal
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
</PropertyGroup>
7+
8+
</Project>

PatternMatching/Program.cs

+141
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
using System;
2+
3+
namespace PatternMatching
4+
{
5+
6+
/// <summary>
7+
/// Pattern Matching
8+
/// https://docs.microsoft.com/en-us/archive/msdn-magazine/2019/may/csharp-8-0-pattern-matching-in-csharp-8-0
9+
/// https://docs.microsoft.com/en-us/dotnet/csharp/pattern-matching
10+
/// https://docs.microsoft.com/en-us/dotnet/csharp/tutorials/pattern-matching
11+
/// https://github.com/dotnet/roslyn/blob/master/docs/features/patterns.md
12+
/// </summary>
13+
class Program
14+
{
15+
static void Main(string[] args)
16+
{
17+
IInstrument stock01 = new Stock();
18+
Console.WriteLine($"Stock volatility is {GetVolatilityUsingifBlock(stock01)}");
19+
20+
IInstrument bond01 = new Bond();
21+
Console.WriteLine($"Bond volatility is {GetVolatilityUsingifBlock(bond01)}");
22+
23+
SNP500IndexFund sNP500 = new SNP500IndexFund();
24+
Console.WriteLine($"SNP500IndexFund volatility is {GetVolatilityUsingSwitchBlock(sNP500)}");
25+
26+
EmergingMarketFund emergingMarketFund = new EmergingMarketFund();
27+
Console.WriteLine($"EmergingMarketFund volatility is {GetVolatilityUsingSwitchBlock(emergingMarketFund)}");
28+
29+
Console.WriteLine($"Authorize is {Authorize("123",string.Empty, false)}");
30+
Console.WriteLine($"Authorize is {Authorize(string.Empty, string.Empty, true)}");
31+
Console.WriteLine($"Authorize is {Authorize(string.Empty, string.Empty, false)}");
32+
33+
Stock stock02 = new Stock(920.12);
34+
Console.WriteLine($"Stock should be price {ShouldBuy(stock02, 170)}");
35+
36+
Stock stock03 = new Stock(920.12);
37+
Console.WriteLine($"Stock should be price {ShouldBuy(stock03, 1200.10)}");
38+
}
39+
40+
static VolatilityType GetVolatilityUsingifBlock(IInstrument instrument)
41+
{
42+
// csharp-7.0
43+
if (instrument is Stock s)
44+
{
45+
return s.Volatility;
46+
}
47+
48+
if (instrument is Bond b)
49+
{
50+
return b.Volatility;
51+
}
52+
53+
return VolatilityType.Unknown;
54+
}
55+
56+
static VolatilityType GetVolatilityUsingSwitchBlock(IInstrument instrument)
57+
{
58+
// csharp-7.0
59+
switch (instrument)
60+
{
61+
case Stock s when s is SNP500IndexFund:
62+
return s.Volatility;
63+
case Stock s when s is EmergingMarketFund:
64+
return s.Volatility;
65+
}
66+
67+
return VolatilityType.Unknown;
68+
}
69+
70+
// csharp-7.0
71+
static VolatilityType GetVolatilityUsingSwitchBlockV2(IInstrument instrument) =>
72+
instrument switch
73+
{
74+
Stock s when s is SNP500IndexFund => s.Volatility,
75+
Stock s when s is EmergingMarketFund => s.Volatility,
76+
_ => VolatilityType.Unknown
77+
};
78+
79+
// csharp-8.0 - tupe-switch
80+
static bool Authorize(string apiKey, string authToken, bool isAuthTokenValid) =>
81+
(apiKey, authToken, isAuthTokenValid) switch
82+
{
83+
("123", _, _) => true,
84+
(_,_,true)=> true,
85+
(_, _, false) => false,
86+
};
87+
88+
// csharp-8.0
89+
static bool ShouldBuy(Stock stock, double maxPrice) =>
90+
(stock, maxPrice) switch
91+
{
92+
var (Volatility, price) when price < maxPrice => true,
93+
var (Volatility, price) when price > maxPrice => false,
94+
_=>false
95+
};
96+
97+
public interface IInstrument
98+
{
99+
VolatilityType Volatility { get; set; }
100+
}
101+
102+
public enum VolatilityType
103+
{
104+
Unknown = 0,
105+
Low = 1,
106+
High = 2
107+
}
108+
109+
public class Stock : IInstrument
110+
{
111+
public VolatilityType Volatility { get; set; } = VolatilityType.High;
112+
113+
public double Price { get; set; }
114+
115+
public Stock(double price) => (price) = (Price);
116+
117+
public Stock()
118+
{
119+
120+
}
121+
}
122+
123+
public class Bond : IInstrument
124+
{
125+
public virtual VolatilityType Volatility { get; set; } = VolatilityType.Low;
126+
}
127+
128+
public class SNP500IndexFund : Bond
129+
{
130+
131+
}
132+
133+
public class EmergingMarketFund : Bond
134+
{
135+
public override VolatilityType Volatility { get; set; } = VolatilityType.High;
136+
}
137+
}
138+
}
139+
140+
141+

0 commit comments

Comments
 (0)