Runtime creation of Texture2D array

Hi Everyone!

I have “y” number of arrays and each array with “x” number of elements.

How can i create such array in runtime ?

can anyone suggest ?

“y” and “x” are the values coming from server. (i want to store Textures in arrays)

create a list and process like : list[ j*x+i ] , i = [0,x) , j = [0,y)