最佳答案
我正在编写一个简单的导入应用程序,需要读取CSV文件,在DataGrid
中显示结果,并在另一个网格中显示CSV文件的损坏行。例如,在另一个网格中显示短于5个值的线条。我试着这样做:
StreamReader sr = new StreamReader(FilePath);
importingData = new Account();
string line;
string[] row = new string [5];
while ((line = sr.ReadLine()) != null)
{
row = line.Split(',');
importingData.Add(new Transaction
{
Date = DateTime.Parse(row[0]),
Reference = row[1],
Description = row[2],
Amount = decimal.Parse(row[3]),
Category = (Category)Enum.Parse(typeof(Category), row[4])
});
}
但在这种情况下,很难对数组进行操作。有没有更好的方法来拆分这些值?