-1

我有一个名为 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>();

4

1 回答 1

1

尝试使用 namespace.ChartEx 其中命名空间是你的应用程序代码文件命名空间,你有你的类。

于 2013-07-31T18:33:06.083 回答