-1

我有一堂课

public class avto:IEquatable<avto>
{
    public string gorod;
    public string model;
    public string marka;
    public string god;
    public string cena;
    public string tel1="";
    public string email = "";
    public List<String> tel = new List<string>();
    public avto()
    {

    }
    public void setTel(string t)
    {          
        string[] spl = t.Split(',');
        tel.AddRange(spl);
    }

    public bool Equals(avto other)
    {
        return tel1==other.tel1 && model==other.model && marka==other.marka
            && god==other.god && cena==other.cena && gorod==other.gorod;
    }
}

和 csvWriter 的代码

    public void save(List<avto> ls)
    {
        using (var textWriter = new StreamWriter("1.csv"))
        using (var writer = new CsvWriter(textWriter))
        {
            writer.WriteRecords(ls);
        }
    }

在这一行

writer.WriteRecords(ls);

我有错误

你调用的对象是空的。

Source-CsvHelper 我该怎么做才能使此代码正常工作?

Ls不为空,count=600

4

1 回答 1

0

您传入的对象save(List<avto> ls)尚未实例化。

例如:

var ls = new List<avto>();
save(ls);
于 2012-06-16T06:44:57.873 回答