- 积分
- 3
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2013-10-23
- 最后登录
- 1970-1-1

|
发表于 2013-10-24 14:44:52
|
显示全部楼层
List 出错
要加上类型
private List<string> getLatLabels(MeteoDataInfo aDataInfo)
{
List<string> latLabels = new List<string>();
private List<string> getLevelLabels(MeteoDataInfo aDataInfo)
{
List<string> levelLabels = new List<string>();
List<double> levels = aDataInfo.GetLevels();
错误 1 使用泛型 类型“System.Collections.Generic.List<T>”需要“1”个类型实参 F:\personal\develop\frmSectionPlotMeteoInfo\frmSectionPlotMeteoInfo\Form1.cs 97 17 frmSectionPlotMeteoInfo
|
|