2021年1月5日

C#空传播运算符

摘要: string a = null; Console.WriteLine( a?.ToString()?.ToString()); return; string[] b = null; Console.WriteLine( b?[0].Substring(0,1)); return ; 以上两段代码分别 阅读全文

posted @ 2021-01-05 16:17 空明流光 阅读(229) 评论(0) 推荐(0)

导航