Modern C# Part 3 – Switch Expressions

I admit it, I’ve struggled with pattern matching. In the next few blog posts I’ll explore this magic, starting today with switch expressions (not to be confused with switch statements).

The type of switch we’re familiar with is the switch statement:

namespace switchStatement;

internal class Program
{
   static void Main(string[] args)
   {
      string day = string.Empty;
      day = GetDay(2);
      Console.WriteLine(day);
   }

   public static string GetDay(int dayNum)
   {
      string dayName;
      switch (dayNum)
      {
         case 0:
            dayName = "Sunday";
            break;
         case 1:
            dayName = "Monday";
            break;
         case 2:
            dayName = "Tuesday";
            break;
         case 3:
            dayName = "Wednesday";
            break;
         case 4:
            dayName = "Thursday";
            break;
         case 5:
            dayName = "Friday";
            break;
         case 6:
            dayName = "Saturday";
            break;
         default:
            dayName = "Invalid day number";
            break;
      }
      return dayName;
   }
}

This will return Tuesday.

A switch expression has a slightly different syntax, but more important, it matches on a pattern. I’m going to use the example from Microsoft Learning (https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/switch-expression) and take it apart

public static class SwitchExample
{
    public enum Direction
    {
        Up,
        Down,
        Right,
        Left
    }

    public enum Orientation
    {
        North,
        South,
        East,
        West
    }

    public static Orientation ToOrientation(Direction direction) => direction switch
    {
        Direction.Up    => Orientation.North,
        Direction.Right => Orientation.East,
        Direction.Down  => Orientation.South,
        Direction.Left  => Orientation.West,
        _ => throw new ArgumentOutOfRangeException(nameof(direction), $"Not expected direction value: {direction}"),
    };

    public static void Main()
    {
        var direction = Direction.Right;
        Console.WriteLine($"Map view direction is {direction}");
        Console.WriteLine($"Cardinal orientation is {ToOrientation(direction)}");
    }
}

The output of this is

Map view direction is Right
Cardinal orientation is East

The method ToOrientation takes a Direction and calls the switch expression (notice the placement of the keyword switch).

It then sets up the Direction to Orientation pattern matching. For example, it establishes that if the passed in parameter is Direction.Up (that is, the Up enumerated constant) then it is to be converted to Orientation.North, and so forth. (The underscore is a new way of indicating no value, or in this case, the default).

The various expressions are called “arms” and are separated by commas. Each arm contains a pattern and an expression. In the first arm, Direction.Up returns the expression Orientation.North.

It is this pattern matching that I’ll be exploring in the next few blog posts.

Unknown's avatar

About Jesse Liberty

Jesse Liberty has three decades of experience writing and delivering software projects and is the author of 2 dozen books and a couple dozen online courses. Liberty is a Senior AI Engineer at the University of Pittsburgh Medical Center, and was a Team Lead and Senior Software Engineer for various corporations, a Senior Technical Evangelist for Microsoft, a Distinguished Software Engineer for AT&T, a VP for Information Services for Citibank and a Software Architect for PBS. He is a 21 year Microsoft MVP.
This entry was posted in C#, Mini-Tutorial. Bookmark the permalink.

1,136 Responses to Modern C# Part 3 – Switch Expressions

  1. I value the clear transparency and quick deposits. This site is reliable.

  2. I switched from another service because of the intuitive UI and seamless withdrawals.

  3. Somebody essentially help to make seriously articles I would state. This is the very first time I frequented your web page and thus far? I surprised with the research you made to make this particular publish amazing. Excellent job!

  4. neurodyne's avatar neurodyne says:

    I intended to draft you a little bit of remark to help say thanks again on the unique information you have documented above. This is unbelievably generous with people like you to deliver without restraint exactly what a few people could possibly have made available for an e-book to earn some cash for their own end, and in particular considering that you might well have done it in case you decided. These concepts also served to become good way to know that other individuals have a similar fervor just like my personal own to figure out much more regarding this condition. I know there are lots of more pleasurable opportunities up front for individuals that find out your website.

  5. lotto champ's avatar lotto champ says:

    I like this post, enjoyed this one appreciate it for putting up. “To affect the quality of the day that is the art of life.” by Henry David Thoreau.

  6. miototo's avatar miototo says:

    I was looking at some of your posts on this site and I think this website is real instructive! Retain posting.

  7. Hey there! Do you use Twitter? I’d like to follow you if that would be okay. I’m absolutely enjoying your blog and look forward to new updates.

  8. I have been exploring for a little for any high quality articles or blog posts in this sort of area . Exploring in Yahoo I eventually stumbled upon this site. Studying this info So i?¦m glad to exhibit that I have an incredibly just right uncanny feeling I found out just what I needed. I most certainly will make certain to don?¦t fail to remember this web site and give it a glance regularly.

  9. Superb post however I was wondering if you could write a litte more on this topic? I’d be very grateful if you could elaborate a little bit more. Bless you!

  10. kilat333's avatar kilat333 says:

    Hey very nice site!! Man .. Beautiful .. Amazing .. I will bookmark your website and take the feeds also…I’m happy to find a lot of useful information here in the post, we need work out more techniques in this regard, thanks for sharing. . . . . .

  11. Very efficiently written information. It will be beneficial to everyone who usess it, as well as yours truly :). Keep up the good work – i will definitely read more posts.

  12. I like this website very much, Its a really nice post to read and incur information. “Things do not change we change.” by Henry David Thoreau.

  13. Wow! This can be one particular of the most helpful blogs We’ve ever arrive across on this subject. Basically Wonderful. I am also an expert in this topic so I can understand your hard work.

  14. gullybet's avatar gullybet says:

    I love it when people come together and share opinions, great blog, keep it up.

  15. Respect to website author, some good selective information.

  16. I’m typically to blogging and i actually recognize your content. The article has actually peaks my interest. I’m going to bookmark your site and maintain checking for brand new information.

  17. Regards for all your efforts that you have put in this. very interesting info .

  18. I discovered your weblog web site on google and examine just a few of your early posts. Continue to keep up the excellent operate. I just further up your RSS feed to my MSN Information Reader. Searching for forward to reading more from you afterward!…

  19. Some genuinely choice articles on this internet site, bookmarked.

  20. Hiya, I am really glad I’ve found this info. Today bloggers publish just about gossips and internet and this is really annoying. A good site with interesting content, that is what I need. Thank you for keeping this web site, I will be visiting it. Do you do newsletters? Can not find it.

  21. Some genuinely nice and useful information on this internet site, besides I believe the pattern contains superb features.

  22. I like what you guys are up also. Such clever work and reporting! Keep up the superb works guys I have incorporated you guys to my blogroll. I think it’ll improve the value of my web site 🙂

  23. Wohh just what I was searching for, regards for putting up.

  24. wps官网's avatar wps官网 says:

    But a smiling visitant here to share the love (:, btw great pattern.

  25. Thanks for your posting. One other thing is that if you are advertising your property alone, one of the difficulties you need to be mindful of upfront is how to deal with household inspection accounts. As a FSBO retailer, the key about successfully moving your property plus saving money in real estate agent profits is expertise. The more you know, the smoother your home sales effort are going to be. One area where this is particularly important is information about home inspections.

  26. I genuinely tresure your piece of work, Great post.

    Feel free to surf to my webpage – commercial real estate company

  27. fhecofibt's avatar fhecofibt says:

    Rejoins la plus grande
communauté de jeux de casino en ligne. Cette machine à sous offre plusieurs bonus intéressants, notamment :– Multiplicateurs de Zeus : Zeus peut ajouter des multiplicateurs de gains jusqu’à x5000.– Fonction Tumble : Les symboles gagnants disparaissent pour laisser place à de nouveaux, permettant des gains successifs.– Tours gratuits : En obtenant 4 symboles Scatter, vous débloquez ainsi 15 tours gratuits avec des multiplicateurs cumulés. Rejoignez la plus grande
communauté de jeux
de casino en ligne. COPYRIGHT © 2015 – 2025. Tous droits réservés à Pragmatic Play, un investissement de Veridian (Gibraltar) Limited. Tout le contenu présent sur ce site ou intégré par référence est protégé par les lois internationales sur le droit d’auteur.
    https://my-herba.ch/analyse-de-la-popularite-du-jeu-unique-casino-en-france/
    Votre commentaire sera ajouté après modération Ces promotions peuvent inclure des primes sur dépôt, des tours gratuits et des tournois exclusifs, couvrant une large gamme de jeux allant des machines à sous aux jeux de table. Elles sont assorties de conditions spécifiques comme des exigences de mise, obligeant l’internaute à miser le montant du bonus plusieurs fois avant de pouvoir retirer ses gains. Vous pouvez tester Gate of Olympus gratuitement sur Pampago : Voici ma sélection des meilleurs casinos en ligne au Canada, basée sur une analyse rigoureuse de chaque plateforme, les dernières actualités du secteur et un classement à jour des meilleurs bonus disponibles pour les joueurs canadiens. Inscription facile, bonus ultra généreux, je recommande vivement pour une expérience de jeu dynamique et sécurisée!

  28. Everything is very open and very clear explanation of issues. was truly information. Your website is very useful. Thanks for sharing.

  29. Some genuinely good content on this site, thank you for contribution. “A religious awakening which does not awaken the sleeper to love has roused him in vain.” by Jessamyn West.

  30. I’ve been exploring for a little for any high quality articles or weblog posts in this sort of house . Exploring in Yahoo I finally stumbled upon this site. Studying this information So i’m happy to show that I have a very just right uncanny feeling I discovered exactly what I needed. I such a lot for sure will make certain to do not overlook this website and give it a look regularly.

  31. twezdmaqh's avatar twezdmaqh says:

    Для игры в Sugar Rush на деньги требуется: Разработчик уделил много внимания эстетике: изумительная графика с тщательной прорисовкой деталей и объемный звук создают замечательное настроение. Классический геймплей, достоинства которого проверены временем, в сочетании с инновационными бонусными опциями завораживает и увлекает. График показывает распределение вероятностей выпадения множителей, т.е. с какой вероятностью может выпасть тот или иной множитель. Тут можно оценить, какие множители чаще других выпадают в игровом автомате “Sugar Rush”, и какая доля среди них приходится на бонусные игры (Free Spins). E-mail: pragmatic.play.biz@gmail Разработчик уделил много внимания эстетике: изумительная графика с тщательной прорисовкой деталей и объемный звук создают замечательное настроение. Классический геймплей, достоинства которого проверены временем, в сочетании с инновационными бонусными опциями завораживает и увлекает.
    https://malikjain.com/%d0%be%d0%b1%d0%b7%d0%be%d1%80-%d0%b8%d0%b3%d1%80%d0%be%d0%b2%d0%be%d0%b3%d0%be-%d0%b0%d0%b2%d1%82%d0%be%d0%bc%d0%b0%d1%82%d0%b0-sugar-rush-%d0%be%d1%82-pragmatic-play-%d0%b4%d0%bb%d1%8f-%d0%b8%d0%b3/
    Провайдер RTP для Sugar Rush 1000 – 97.5%. Сладкий экшен, взрывающийся фриспинами и множителями. Sweet bonanza pragmatic play – это дождь из леденцов и сахарная буря. Эта сладкая страна прокачает твои вкусы. Здесь каждый оборот на вес лакомства и выигрыша. Платформа для демонстрации наших усилий по повышению безопасности и прозрачности индустрии азартных онлайн-игр. Monopoly Big baller Слот Sugar Rush предлагает захватывающую тематику, погружая игрока в яркий мир сладостей и десертов. Визуальный стиль выполнен в живых, насыщенных цветах, напоминающих конфеты и сахарные изделия. Элементы игрового поля, такие как символы в виде разноцветных конфет, создают лёгкую и весёлую атмосферу, делая Шуга Раш слот привлекательным для игроков.

  32. gas medis's avatar gas medis says:

    Great info and right to the point. I don’t know if this is actually the best place to ask but do you people have any thoughts on where to hire some professional writers? Thx 🙂

  33. sakti55's avatar sakti55 says:

    I was wondering if you ever thought of changing the structure of your website? Its very well written; I love what youve got to say. But maybe you could a little more in the way of content so people could connect with it better. Youve got an awful lot of text for only having 1 or two images. Maybe you could space it out better?

Comments are closed.