I made an infinity donkey and i want console to stop scrolling to the end automatically so people can scroll to end by themselves.
I tried Console.SetCurserPosition(5 , 5);
Didn't help.
Here is my code :
using System;
using System.Threading;
namespace Infinite_Donkey
{
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Press 'Enter' and wait to see the magic!");
Console.ReadLine();
Console.WriteLine(" ^__^");
Console.WriteLine(" (oo)_______");
Console.WriteLine(" (__) )\\");
Console.WriteLine(" ||---|| ");
Console.WriteLine(" || || ");
Thread.Sleep (2000);
do
{
Console.WriteLine(" || ||");
}while(true);
}
}
}
Note : Program works kind of fine but i just want it to stop scrolling down automatically.