Say you have a list of Object person:
private List<Person> lstPersons = new List<Person>();
In which person is defined as:
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
public string Mail { get; set; }
}
Can you use Linq to return a multidimensional array from the mentioned list in which the first dimension is index of record, the second dimension is name and the third dimension is email?
Namefor example be a dimension? Are you trying to create some kind of dictionary that you can give it aName,Age, and aMailand it will give you back aPersonobject?