我正在尝试读取一个文本文件,只读取每五个单词,然后换行,感谢我之前问题的反馈,我的代码现在看起来像这样
string fileText = File.ReadAllText(ofd.FileName).Replace(Environment.NewLine, ",");
string[] lines = new string[]
{
File.ReadAllText(ofd.FileName)
};
var fifthOnEachLine = lines.Select(x => x.Split(',')[4]);
objSqlCommands.sqlCommandInsertorUpdate2("INSERT", fifthOnEachLine);//laClient[0]);
但是,当我运行代码时,我得到的数据如下所示:
System.Linq.Enumerable+WhereSelectArrayIterator`2[System.String,System.String]
有谁知道如何解决这一问题 ?