为什么我不能为构造函数创建属性?

时间:2016-04-11 22:19:41

标签: c# oop

我需要初始化这个列表,它应该是静态的,但我不能。任何帮助,请:(


    this.columns = svg.selectAll("rect")
    .data(data);
    this.columns.enter().append("rect")
    .attr("class", "bars")
    .attr("clip-path", "url(#clip)")
    .attr("width", tempW )
    .attr("x", function(d) { return x(d.date); })
    .attr("y", function(d) { return return y(d.values["count"]);} )
    .attr("height", function(d) { return height4 - y4(d.values["count"])-0.5; })

1 个答案:

答案 0 :(得分:2)

在使用teste之前,您需要实例化myobj列表:

private static List<MyObj> teste = new List<MyObj>();

你的财产的get不能自行返回,它会导致无限循环。