Read Line and Split
时间:2010-10-02 来源:irischan
C#:
//split
String strline=sr.ReadLine(); String[] strHeaderCol=strline.Split('\t'); //read lines while(true) { strline=sr.ReadLine(); if(String.IsNullOrEmpty(strline)) { break; } else { …
} } sr.Close();
相关阅读 更多 +