语法null condition operator jagged array

时间:2017-10-12 06:18:21

标签: c# null jagged-arrays

如何在锯齿状数组中使用空条件运算符的正确语法?

{{1}}

该引用未提供有关该

的任何信息

https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/null-conditional-operators

1 个答案:

答案 0 :(得分:6)

bool result = array?[0]?[3]?[2] == 3;