我无法将字符串数组中的值转换为 int,因为该值可能为 null。
StreamReader reader = File.OpenText(filePath);
string currentLine = reader.ReadLine();
string[] splitLine = currentLine.Split(new char[] { '|' });
object.intValue = Convert.ToInt32(splitLine[10]);
这很好用,除非 splitLine[10] 为空。
引发错误:`System.FormatException:输入字符串的格式不正确。
有人可以就处理这个问题的最佳方法向我提供一些建议吗?