Terminal console lines that are offscreen are missing

Not sure if this is OS, Windows 11, VS, C# or terminal issue. Can't seem to find anything relating this

Simple program in C#:
static void Main(string[] args)
{
  for(int i = 0; i < 100; i++)
    Console.WriteLine("{0}",i);
}


output seems fine until i try seeing earlier values
unknown.png
Was this page helpful?