If I had a couple regions that had multiple stores each. Is there a way to put these store objects into an array of a region?
I am trying things like:
VB Code:
  1. static int size = 3;
  2.         static Region[] regions = new Region[size];
  3.        
  4.         static void Main(string[] args)
  5.         {
  6.             //for (int k = 0; k < size; k++)
  7.             //    regions[k] = new Region();
  8.  
  9.             double[] stores = new double[5];
  10.  
  11.             for (int k = 0; k < 5; k++)
  12.                 stores[k] = IO.GetDouble("Enter the week's sales for store " + (k+1) + ": ");
  13.  
  14.             regions[0] = stores;
with no luck. Thanks in advance for any help.