logo
  • 教程列表
  • SO官方文檔
  • 空條件運算子
    • 空條件運算子
    • 空條件指數
    • 避免 NullReferenceExceptions
    • Null 條件運算子可以與擴充套件方法一起使用
  1. StackOverflow 文件
  2. C# Language 教程
  3. 空條件運算子
  4. 空條件指數

空條件指數

Created: November-22, 2018

與 ?. 運算子類似,null 條件索引運算子在索引到可能為 null 的集合時檢查空值。

string item = collection?[index];

是語法糖

string item = null;
if(collection != null)
{
    item = collection[index];
}
  • 避免 NullReferenceExceptions
  • 空條件運算子

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明