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();

相关文章:

  • 2021-08-30
  • 2021-06-28
  • 2021-12-26
  • 2021-12-20
  • 2021-12-25
  • 2021-06-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-17
  • 2022-12-23
  • 2021-08-25
  • 2021-11-14
相关资源
相似解决方案