Ho avuto questo codice:
String[] lineElements;
. . .
try
{
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
String line;
while ((line = sr.ReadLine()) != null)
{
lineElements = line.Split(',');
. . .
ma poi ho pensato che forse avrei dovuto andare con un elenco. Ma questo codice:
List<String> listStrLineElements;
. . .
try
{
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
String line;
while ((line = sr.ReadLine()) != null)
{
listStrLineElements = line.Split(',');
. . .
... mi dà, " Impossibile convertire implicitamente il tipo 'string []' in 'System.Collections.Generic.List' "