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?
private static double[][] temp = null;
EDIT:
Three dimensional:
private static double[][][] temp = null;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With