无法调用类变量

时间:2013-07-31 18:08:22

标签: c#

我有一个名为ChartEx的课程

 public class ChartEx
{
    public string name { get; set; }
    public List<int> data { get; set; }
}

我试图从我背后的代码中调用它

List<int> lstXaxis = new List<int>() { 9, 10, 11, 12 };
List<ChartEx> lstseries = new List<ChartEx>();

能够识别List<int> lstXaxis = new List<int>() { 9, 10, 11, 12 };,但在List<ChartEx> lstseries = new List<ChartEx>();

上显示错误

1 个答案:

答案 0 :(得分:1)

尝试使用namespace.ChartEx,其中命名空间是您拥有类的appcode文件命名空间。