79157400

Date: 2024-11-05 01:02:28
Score: 2.5
Natty:
Report link
using (var reader = new StreamReader("your file path"))
{
    while (reader.Peek() != -1)
    {
        Console.WriteLine(reader.ReadLine());
    }
}

See: https://learn.microsoft.com/en-us/dotnet/api/system.io.streamreader.peek?view=net-8.0#definition

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: lalaki