コード例 #1
0
        static void Main(string[] args)
        {
            List <Student>   listStudents   = new List <Student>();
            List <ReStudent> listReStudents = new List <ReStudent>();

            listStudents = FileCSVServices.ReadFileCsvToList <Student>(Path.Combine(FilePath.strRootPath, FilePath.strFileInputName));
            StudentServices.MapperDataStudent(listStudents, listReStudents);
            FileCSVServices.WriteFileCsv <ReStudent>(listReStudents, Path.Combine(FilePath.strRootPath, FilePath.strFileOutputName));
        }