我认为我误解了获取的目的;放; 在 C# 中。我有一个要填充的双打列表,我正在使用以下代码...它们都在同一个类中,当我尝试运行它时,尝试填充列表时出现 Null 引用异常. 我到底误会了什么?
public List<double> NewData
{ get; set; }
public InfoFile(String fileName, String groupName)
{
this.group = groupName;
test = File.ReadAllLines(fileName);
FileInfo label = new FileInfo(fileName);
this.name = Path.GetFileName(fileName);
isDrawn = false;
for (int t = 2; t < test.Length; t++)
{
NewData.Add(double.Parse(test[t].Substring(6, 4)));
}
}