本帖最后由 ↖落葉下♀媃媚 于 2013-5-15 19:15 编辑
OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = "文本文件|*.txt";
if(ofd.ShowDialog()!=true)
{
return;
}
string filename = ofd.FileName;
//File.ReadAllLines()是把文件一次读取到string集合中
IEnumerable<string> lines = File.ReadLines(filename);
foreach(string line in lines)
{//把"小红|16"按照|分割
string str = line.Split('|');
string name = str[0];
string age=str[1];
红色部分出现问题问什么不能隐式转换为string,按说应该可以的?出错在哪了呢? |