- 积分
- 76
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-11-13
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
NetCDFDataInfo aDataInfo = new NetCDFDataInfo();
OpenFileDialog aDlg = new OpenFileDialog();
int num_1 = 0;
int num_2 = 0;
int numLev = 0;
if (aDlg.ShowDialog() == DialogResult.OK)
{
comboBox1.Items.Clear();
comboBox2.Items.Clear();
comboBox3.Items.Clear();
string aFile = aDlg.FileName;
//aDataInfo.ReadDataInfo(aFile);
aDataInfo.ReadDataInfo(aFile);
while (num_1 < aDataInfo.varList.Count)
{
comboBox1.Items.Add(aDataInfo.varList[num_1].varName);
num_1++;
}
}
出错信息:未处理 System.IndexOutOfRangeException
Message=Index was outside the bounds of the array.
是不是netcdf 和netcdf413的原因啊? |
|