I'm trying to convert a IList<IList<object>>
to IList<object>
, I mean to have a unique and one list where contains all the element (object) of the first one.
public IList<IList<Page>> PMTs
{
get
{
var pmts = Processes.Select(x => x.PageMapTable)
.ToList();
return pmts;
}
}
public IList<Page> BlockMapTable
{
get
{
// Incomplete
var btm = PMTs.Select(x => x.?? ..
}
}