forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Csharp pattern matching (dotnet#1315)
* outline done * Finish first draft and samples. * remove wrench from Pattern Matching article. * add section on definitely assigned. * proofread * first review pass. * respond to feedback. * respond to feedback Next is reworking the sample. * Update samples and explanations. Based on review feedback. Describe the different patterns better. Show how the new syntax is an extension of existing statements. Contrast this code with a OO approach better, and emphasize that one advantage of this approach is separating data and behavior. * fix a build error * outline done * Finish first draft and samples. * remove wrench from Pattern Matching article. * add section on definitely assigned. * proofread * first review pass. * respond to feedback. * respond to feedback Next is reworking the sample. * Update samples and explanations. Based on review feedback. Describe the different patterns better. Show how the new syntax is an extension of existing statements. Contrast this code with a OO approach better, and emphasize that one advantage of this approach is separating data and behavior. * fix a build error * update publish date. * respond to feedback. * update per feedback * Respond to feedback. * Respond to final review.
- Loading branch information
1 parent
1c5bef6
commit 9b1bca1
Showing
9 changed files
with
577 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 15 | ||
VisualStudioVersion = 15.0.26006.2 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PatternMatching", "PatternMatching\PatternMatching.csproj", "{6FD56CA8-402F-4897-8C1F-AD830211918A}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{6FD56CA8-402F-4897-8C1F-AD830211918A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{6FD56CA8-402F-4897-8C1F-AD830211918A}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{6FD56CA8-402F-4897-8C1F-AD830211918A}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{6FD56CA8-402F-4897-8C1F-AD830211918A}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /> | ||
</startup> | ||
</configuration> |
Oops, something went wrong.