Tôi đã có mã này:
    String[] lineElements;       
    . . .
    try
    {
        using (StreamReader sr = new StreamReader("TestFile.txt"))
        {
            String line;
            while ((line = sr.ReadLine()) != null)
            {
                lineElements = line.Split(',');
                . . .
nhưng sau đó nghĩ rằng tôi có thể nên đi với một Danh sách thay thế. Nhưng mã này:
    List<String> listStrLineElements;
    . . .
    try
    {
        using (StreamReader sr = new StreamReader("TestFile.txt"))
        {
            String line;
            while ((line = sr.ReadLine()) != null)
            {
                listStrLineElements = line.Split(',');
. . .
... mang đến cho tôi, " Không thể ngầm chuyển đổi loại 'chuỗi []' thành 'System.Collections.Generic.List' "