I have the CSV file opened, but I can\'t figure out how to put the resultant array from splitting the line into another array. I have the following code currently, hopefully it
As a supplemental answer for the means of producing a list, here is what I was able to get to work:
List rows = MyCSVString.Replace("\n", "").Split('\r').ToList();
List> listedMatrix = new List>();
foreach(var x in rows)
{
if(x != "")
{
var rowList = x.Split(',').ToList();
listedMatrix.Add(rowList);
}
}