switch两种写法对比

public static int? Test1(string str)
{
    return str switch
    {
        "A" => 1,
        "B" => 2,
        "C" => 3,
        _ => default,
    };
}
public static int? Test2(string str)
{
    switch (str)
    {
        case "A":
            return 1;
        case "B":
            return 2;
        case "C":
            return 3;
        default:
            return default;
    }
}

执行下面的代码

Console.WriteLine("Test1:" + Test1("My IO"));
Console.WriteLine("Test2:" + Test2("My IO"));

switch两种写法对比

 

 Test1返回了int而不是int?的默认值!

 

switch两种写法对比

上一篇:在VNPY2的进行CTA批量回测,支持Json和Excel格式导入策略


下一篇:Update to enable TLS 1.1 and TLS 1.2 as default secure protocols in WinHTTP in Windows