如何从csv文件中读取数据并将该数据写入新csv文件中的某些行

本文关键字:文件 数据 csv 读取 | 更新日期: 2023-09-27 18:08:53

我想在一个文件中读取,并在另一个文件中写入某些列

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

namespace ConsoleApplication2
{
class Program
{
    static void Main(string[] args)
    {

        try
        {
            using (StreamWriter sw = new StreamWriter("AEJoinerDataTemplate.csv"))
            // using streamwriter to write to a text file
            using (StreamReader sr = new StreamReader("AutoEnrolment.csv"))
            // using streamreader to read a text file 
            {
                while ((txtline = sr.ReadLine()) != null)
                {

如何从csv文件中读取数据并将该数据写入新csv文件中的某些行

一种非常灵活的方法是首先将记录放入对象中,然后将您想要输出的对象的这些字段写入新文件。

例如,你可以使用下面的库从文件中读取对象并将对象写入文件。

FileHelpers