Property pattern in C#8 with keyword switch ,Enum pattern via switch

static void PropertyPatternDemo()
        {
            string url = "https://devblogs.microsoft.com/dotnet/do-more-with-patterns-in-c-8-0/";
            bool result = ShouldAllow(new Uri(url));
            Console.WriteLine(result);
        }

       static bool ShouldAllow(Uri uri) => uri switch
        {
            { Scheme: "http", Port: 80,Host:var host} => host.Length<1000,
            { Scheme: "https", Port: 443 } => true,
            { Scheme: "ftp", Port: 21 } => true,
            { IsLoopback: true } => true,
            _ => false
        };

 

enum Seasons { Spring,Summer,Fall,Winter};

static void EnumPatternDemo()
        {
            int tp = AverageTemp(Seasons.Spring, false);
            Console.WriteLine(tp);
        }

        static int AverageTemp(Seasons sea, bool dayTime) => (sea, dayTime) switch
        {
            (Seasons.Spring, true) => 20,
            (Seasons.Spring, false) => 16,
            (Seasons.Summer, true) => 27,
            (Seasons.Summer, false) => 22,
            (Seasons.Fall, true) => 18,
            (Seasons.Fall, false) => 12,
            (Seasons.Winter, true) => 10,
            (Seasons.Winter, false) => -2,
            _ => throw new Exception("Unexpected combination")
        };

 

原文链接: https://www.cnblogs.com/Fred1987/p/14473425.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍;

也有高质量的技术群,里面有嵌入式、搜广推等BAT大佬

    Property pattern in C#8 with keyword switch ,Enum pattern via switch

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/401874

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年4月19日 上午9:28
下一篇 2023年4月19日 上午9:28

相关推荐