交错数组中空条件运算符的正确语法如何?
int[][][] array = new int[5][][];
// fill with data here
bool result = array[0]?.[3]?.[2] ?? == 3;
该参考未提供有关该的任何信息
https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/null-conditional-operators
bool result = array?[0]?[3]?[2] == 3;