Miałem taki kod:
String[] lineElements;
. . .
try
{
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
String line;
while ((line = sr.ReadLine()) != null)
{
lineElements = line.Split(',');
. . .
ale potem pomyślałem, że może zamiast tego powinienem wybrać Listę. Ale ten kod:
List<String> listStrLineElements;
. . .
try
{
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
String line;
while ((line = sr.ReadLine()) != null)
{
listStrLineElements = line.Split(',');
. . .
... daje mi komunikat „ Nie można niejawnie przekonwertować typu„ string [] ”na„ System.Collections.Generic.List ” ”