Please help convert the following Java code to C# ?
String[] titles = new String[] { "Alpha", "Beta", "Gamma", "Delta" };
List<double[]> x = new ArrayList<double[]>();
for (int i = 0; i < titles.length; i++) {
x.add(new double[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,13,14,15 });
}
And what is this code doing?
Thanks
This code loops through 4 entries of the titles String array and adds a double array with 15 entries to a list called x for each entry in the titles array