对我个人而言,不是很常用,但又是基础,放起来,用的时候参考。
        textLine = inStr.ReadLine();
        while(textLine != null)
        {
          Console.WriteLine(textLine);
          textLine = inStr.ReadLine();
        }
        inStr.Close();
    }
  }
}

相关文章:

  • 2021-08-22
  • 2022-12-23
  • 2022-12-23
  • 2022-01-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-05-15
  • 2022-12-23
  • 2022-02-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案