语法空条件运算符交错数组



交错数组中空条件运算符的正确语法如何?

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;

相关内容

  • 没有找到相关文章

最新更新