美文网首页
c#nullable类和空接运算符

c#nullable类和空接运算符

作者: 午字横 | 来源:发表于2024-08-31 12:03 被阅读0次

    c#7.0之后可以在空接运算符后使用throw了!!!

    void Main()
    {
        int? index=null;
        (index??-1).Dump();
        
        //等同
        Nullable<int> iin=null;
        (iin??-1).Dump();
    
        int? index1 = null;
        (index1 ?? throw new Exception("异常")).Dump();
    }
    
    
    

    2024-09-01

    相关文章

      网友评论

          本文标题:c#nullable类和空接运算符

          本文链接:https://www.haomeiwen.com/subject/znjqljtx.html