I have a array of object which is generated dynamically. I want to store this object in a array collection.
object[] yValues = new object[] { 2000, 1000, 1000 };
object[] yValues1 = new object[] { 2000, 1000, 1000 };
object[] yValues2 = new object[] { 2000, 1000, 1000 };
objColl = {yValues, yValues1, yValues2};// I want to store something like this in a array collection.
How to store and push the array of object dynamically in to the new array variable.