Microsoft has a wonderful tutorial on pattern matching, in which you model a lock (to raise or lower a ship when there would otherwise be a waterfall). They model the two doors and the water level.
While their example is excellent it is long, and in this blog post I’m going to take the essence of pattern matching using their example.
We start with a state machine:

The chart indicates whether the gate should be opened or closed based on the new setting and the current status of the gate as well as the water level. We read it as follows: if the new setting is closed, it doesn’t matter what the starting state of the gate is, nor the water level, we close the gate (first three lines).
On the other hand, if the gate is closed (line 4) and we give it a new state of open and the water level is high, then we open the gate. If, on line 5, we tell it to open from a closed state, but the water level is low then we have an error (don’t open when the water is low).
Finally, if we say open and it is open and the water level is high, then we do, in fact, open.
These states can be modeled in a switch expression using pattern matching where true = open and false = closed:
HighWaterGateOpen = (open, HighWaterGateOpen, CanalLockWaterLevel) switch
{
(false, false, WaterLevel.High) => false,
(false, false, WaterLevel.Low) => false,
(false, true, WaterLevel.High) => false,
(true, false, WaterLevel.High) => true,
(true, false, WaterLevel.Low) => throw new InvalidOperationException("Cannot open high gate when the water is low"),
(true, true, WaterLevel.High) => true,
As you can see, the first three arms of this expression start false and end false, as we saw above. Next, we have the case where the new state is true, the current state is false and the Water level is high. This causes the gate to open (true).
But it gets easier. First, we need the default case. In the latest C# an underscore matches anything. So we add
_ => throw new InvalidOperationException(“Invalid internal state”),
as the default, meaning if anything else comes up, it is invalid.
Note that, as we said, the first three arms all evaluate to false. We can replace them with
(false, _, _) => false,
You read this as, if the first value is false (the new condition) then no matter what the second and third conditions are, we will evaluate to false.
Next we need to know what to do if the new state is true. This is slightly tricker as it depends on the water level:
(true, _, WaterLevel.High) => true,
(true, false, WaterLevel.Low) => throw new InvalidOperationException("Cannot open high gate when the water is low"), => throw new InvalidOperationException("Invalid internal state"),
Thus, if the new state is true, and the water level is high (no matter the state of the gate), then we do open the gate. If the new state is open (from on original state o closed) and the water level is low then, uh oh.
Here is the final version of the method:
// Change the upper gate.
public void SetHighGate(bool open)
{
HighWaterGateOpen = (open, HighWaterGateOpen, CanalLockWaterLevel) switch
{
(false, _, _) => false,
(true, _, WaterLevel.High) => true,
(true, false, WaterLevel.Low) => throw new InvalidOperationException("Cannot open high gate when the water is low"),
_ => throw new InvalidOperationException("Invalid internal state"),
};
}
All of this is simpler, cleaner and thus easier to understand and maintain than a series of if statements or even a set of switch statements.
My brother suggested I might like this blog. He was entirely right. This post truly made my day. You cann’t imagine simply how much time I had spent for this information! Thanks!
The Pink Salt Trick is a minimalist but effective morning routine: Just drink a glass of lukewarm water mixed with a pinch of Himalayan pink salt as soon as you wake up.
I’ve been absent for a while, but now I remember why I used to love this web site. Thank you, I¦ll try and check back more often. How frequently you update your web site?
The Pink Salt Trick is a minimalist but effective morning routine: Just drink a glass of lukewarm water mixed with a pinch of Himalayan pink salt as soon as you wake up.
I really appreciate this post. I have been looking all over for this! Thank goodness I found it on Bing. You’ve made my day! Thanks again
Thank you for sharing superb informations. Your website is very cool. I’m impressed by the details that you’ve on this web site. It reveals how nicely you understand this subject. Bookmarked this website page, will come back for extra articles. You, my friend, ROCK! I found simply the info I already searched everywhere and just could not come across. What a perfect web site.
Some really great info , Gladiola I detected this.
Very efficiently written information. It will be helpful to anyone who utilizes it, including myself. Keep doing what you are doing – can’r wait to read more posts.
I conceive you have remarked some very interesting details, appreciate it for the post.
Very interesting points you have mentioned, regards for putting up.
Hi just wanted to give you a quick heads up and let you know a few of the pictures aren’t loading correctly. I’m not sure why but I think its a linking issue. I’ve tried it in two different web browsers and both show the same outcome.
As a Newbie, I am always exploring online for articles that can be of assistance to me. Thank you
I will right away seize your rss as I can’t in finding your email subscription link or newsletter service. Do you have any? Please allow me recognize in order that I may just subscribe. Thanks.
Great goods from you, man. I’ve understand your stuff previous to and you are just extremely excellent. I actually like what you’ve acquired here, certainly like what you’re saying and the way in which you say it. You make it enjoyable and you still take care of to keep it wise. I can’t wait to read far more from you. This is actually a wonderful site.
Wohh just what I was looking for, thankyou for posting.
I would like to thnkx for the efforts you have put in writing this blog. I am hoping the same high-grade blog post from you in the upcoming as well. In fact your creative writing abilities has inspired me to get my own blog now. Really the blogging is spreading its wings quickly. Your write up is a good example of it.
You are a very bright individual!
Good day! Do you know if they make any plugins to protect against hackers? I’m kinda paranoid about losing everything I’ve worked hard on. Any suggestions?
Hello! This is my first comment here so I just wanted to give a quick shout out and say I really enjoy reading through your posts. Can you recommend any other blogs/websites/forums that go over the same subjects? Thanks a ton!
I’ll immediately seize your rss as I can not to find your email subscription link or e-newsletter service. Do you’ve any? Kindly allow me understand so that I may subscribe. Thanks.
Someone essentially help to make seriously posts I would state. This is the first time I frequented your website page and thus far? I amazed with the research you made to make this particular publish extraordinary. Great job!
In the grand scheme of things you receive a B+ for effort and hard work. Exactly where you actually lost us ended up being on your facts. You know, they say, the devil is in the details… And it couldn’t be much more correct right here. Having said that, allow me reveal to you just what exactly did do the job. The authoring is actually extremely persuasive which is most likely why I am taking the effort to comment. I do not make it a regular habit of doing that. 2nd, while I can certainly see the leaps in logic you make, I am definitely not certain of how you appear to unite the points which inturn produce your conclusion. For the moment I will, no doubt yield to your issue but wish in the foreseeable future you connect the facts much better.
I am often to blogging and i really appreciate your content. The article has really peaks my interest. I am going to bookmark your site and keep checking for new information.
There is visibly a lot to know about this. I believe you made various nice points in features also.
Greetings from Carolina! I’m bored to tears at work so I decided to browse your blog on my iphone during lunch break. I love the information you present here and can’t wait to take a look when I get home. I’m surprised at how fast your blog loaded on my cell phone .. I’m not even using WIFI, just 3G .. Anyways, excellent site!
Hello, Neat post. There’s an issue together with your site in internet explorer, would test this… IE nonetheless is the marketplace leader and a big component of other people will miss your great writing due to this problem.
I like this blog very much, Its a very nice position to read and find info .
Hello there, I found your blog via Google while looking for a related topic, your site came up, it looks great. I have bookmarked it in my google bookmarks.
A powerful share, I simply given this onto a colleague who was doing a bit analysis on this. And he in truth bought me breakfast because I discovered it for him.. smile. So let me reword that: Thnx for the treat! However yeah Thnkx for spending the time to discuss this, I really feel strongly about it and love studying more on this topic. If attainable, as you become experience, would you mind updating your blog with extra details? It is highly helpful for me. Large thumb up for this weblog publish!
Great work! This is the type of information that should be shared around the web. Shame on the search engines for not positioning this post higher! Come on over and visit my website . Thanks =)
Does your site have a contact page? I’m having trouble locating it but, I’d like to shoot you an e-mail. I’ve got some ideas for your blog you might be interested in hearing. Either way, great blog and I look forward to seeing it expand over time.
You are a very clever individual!
you have a great blog here! would you like to make some invite posts on my blog?
As I web site possessor I believe the content matter here is rattling magnificent , appreciate it for your efforts. You should keep it up forever! Best of luck.
I am now not certain the place you’re getting your information, but good topic. I needs to spend a while finding out more or working out more. Thank you for excellent information I was looking for this info for my mission.
Wonderful website. Lots of useful information here. I’m sending it to a few friends ans also sharing in delicious. And certainly, thanks for your effort!
It’s arduous to find knowledgeable people on this topic, but you sound like you recognize what you’re speaking about! Thanks
At this time it appears like Movable Type is the preferred blogging platform out there right now. (from what I’ve read) Is that what you are using on your blog?
This is really interesting, You’re a very skilled blogger. I have joined your feed and look forward to seeking more of your wonderful post. Also, I have shared your site in my social networks!
It’s actually a nice and helpful piece of information. I am glad that you shared this helpful info with us. Please keep us informed like this. Thanks for sharing.
Wow, awesome blog layout! How long have you been blogging for? you make blogging look easy. The overall look of your site is magnificent, let alone the content!
Nice read, I just passed this onto a colleague who was doing a little research on that. And he just bought me lunch because I found it for him smile So let me rephrase that: Thanks for lunch! “The capacity to care is what gives life its most deepest significance.” by Pablo Casals.
Nice post. I was checking continuously this blog and I am impressed! Very useful info specially the last part 🙂 I care for such information much. I was seeking this particular information for a very long time. Thank you and best of luck.
Great awesome things here. I am very glad to peer your post. Thank you a lot and i am taking a look ahead to touch you. Will you kindly drop me a mail?
I see something genuinely special in this internet site.
I have been surfing on-line more than three hours nowadays, yet I never found any interesting article like yours. It’s lovely price sufficient for me. Personally, if all webmasters and bloggers made good content material as you probably did, the web shall be a lot more useful than ever before.
What i do not understood is in reality how you are now not actually a lot more neatly-liked than you may be now. You are so intelligent. You realize therefore considerably on the subject of this subject, made me individually imagine it from numerous various angles. Its like men and women aren’t involved until it’s something to do with Girl gaga! Your own stuffs great. Always take care of it up!
There is apparently a lot to identify about this. I assume you made certain nice points in features also.
I saw a lot of website but I conceive this one has got something extra in it in it
he blog was how do i say it… relevant, finally something that helped me. Thanks