Hi all,
I would like to implement a multimensional array of bytes in my app, but I have no clue on how to set the size for each indipendent dimension.
Declaring the array like this
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
I create an array of 10 rows each of them of 10 items.
But what if I want to have the 1st row of 5 items, the 2nd of 7, the 3rd of 3 and so on?
			
			I would like to implement a multimensional array of bytes in my app, but I have no clue on how to set the size for each indipendent dimension.
Declaring the array like this
			
				B4X:
			
		
		
		Dim MyArray(10,10) as Byte
	But what if I want to have the 1st row of 5 items, the 2nd of 7, the 3rd of 3 and so on?