How can I create array of data type linegraphseries of ten members. Some thing like:
LineGraphSeries<DataPoint> series1 = new LineGraphSeries<DataPoint>(new DataPoint[] {});
to:
LineGraphSeries<DataPoint>[] series1 = new LineGraphSeries<DataPoint>(new DataPoint[] {})[10];
But this code not working.