**I want to set the string of an index from a list that's inside a list**
So I got a variable like this:
var everyRow = new List.< List.>();
My attempt at accessesing the inner List is by:
everyRow.Insert(e, List.());
everyRow[e].Insert(ee, currentLog[ee]);
That line gives me this error though:
ArgumentOutOfRangeException: Argument is out of range.
Parameter name: index
So I'm guessing there's a better way to solve this.
Help?
↧