I am looking to add an object in c# using console application, then once its is on screen i would like to have it move within the bounds of my window to different locations once it has been hit. This is the code i have so far to print the apple on screen.
static void Apple()
{
do
{
Console.ForegroundColor = ConsoleColor.White;
NewApple = RandApple.Next(200);
Console.Write("A");
Console.ReadLine();
} while (!Gameover);
}