+ 4
how to calculate number of elements within multidimensional array
ex int[,,]= new int [5,7,8]; how many elements can above array contains
2 ответов
+ 8
5 * 7 * 8 = 280
+ 4
oh that was so easy thanks
ex int[,,]= new int [5,7,8]; how many elements can above array contains