I have this C# code:
private static double[,][] _temp = null;
I don’t think I’ve ever used an array declaration with a comma in it before. I assume it’s some variation of a jagged array. Can anyone confirm what the C# code does? Also, does anyone know what its equivalent code in Java would be?
Is that a 2 dimensional array?
EDIT:
Three dimensional: