我有一个名为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>();
答案 0 :(得分:1)
尝试使用namespace.ChartEx,其中命名空间是您拥有类的appcode文件命名空间。