I use an array of array :
object[][] of =new object[lenght2][];
Now, what i want is to insert a new array into of[][], I try this :
for (int i = 0; i < lenght2; i++)
{
Act = calcul_resporderbyact(responsable,v); // return array of object
of[i] = Act;
}
i want to know how to use some array from this multidimensional-array ??