空條件指數
與 ?.
運算子類似,null 條件索引運算子在索引到可能為 null 的集合時檢查空值。
string item = collection?[index];
是語法糖
string item = null;
if(collection != null)
{
item = collection[index];
}
與 ?.
運算子類似,null 條件索引運算子在索引到可能為 null 的集合時檢查空值。
string item = collection?[index];
是語法糖
string item = null;
if(collection != null)
{
item = collection[index];
}