在C#中导入CSV文件将字符串列表转换为特定的类类型列表

时间:2018-08-30 09:09:32

标签: c# casting

首先,我不得不提一下,我在编程方面没有那么出色,但我会尽力而为。 出现以下情况:我将几个csv文件导入到字符串列表中。现在,我想将这些列表转换为我需要的classdatatype。例如,学生类,在studentlistmanager类中,iam将该列表插入并尝试将其转换为List,但似乎并没有那么容易,我试图创建该列表的对象并将该对象添加到学生列表中,但这不会要么工作。代替值,我将System.String []值放入列表。

internal void ImportStudentList(CsvImportService csv)
        {
            List<string> newList = new List<string>();
           csv = new CsvImportService("Klassenlisten_20160906.csv");
           for(int i = 0; i <= csv.ClassList.Count;i++)
            {
                for(int x = 0; x <= csv.ClassList.Count;x++)
              {
                    string line = csv.ClassList[i];
                    //  Student st = new Student(line);
                    //  ListOfStudents.Add(st);
                    newList.Add(line);
                    ListOfStudents = newList.Cast<Student>().ToList();

              }
            }
        }

非常感谢您的帮助。预先感谢!

1 个答案:

答案 0 :(得分:0)

您正在寻找什么?在学生中保存csv文件的数据    列表。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;


namespace Stackoverflow_Konsole_Test
{
    class Program
    {
        static void Main(string[] args)
        {
            string CSV_FILE_PATH = @"filepath.csv";

            List<string> FULL_CSV_STRING = new List<string>();
            Students Student1 = new Students();

            FULL_CSV_STRING.Add(File.ReadAllText(CSV_FILE_PATH));

            foreach (string line in FULL_CSV_STRING)
            {
                Student1.add(line);               
            }

            foreach (string line in Student1.getlist())
            {
                Console.WriteLine(line);
            }
            Console.ReadLine();
        }
    }
}




using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Stackoverflow_Konsole_Test
{
    class Students
    {
        private List<string> List_of_students = new List<string>();


        public Students()
        {
            //constructor
        }

        public void add(string line)
        {
            this.List_of_students.Add(line);
        }         
        public List<string> getlist()
        {
            return this.List_of_students;
        }
    }
}