using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GestaltungGL
{
class Program
{
static void Main(string[] args)
{
int i = 0;
i = 15;
Console.ForegroundColor = ConsoleColor.Red;
Console.BackgroundColor = ConsoleColor.Yellow;
Console.Clear();
Console.Write(“Hallo!”);
Console.WriteLine(“Aktuelle Position: [" + Console.CursorTop + "/"
+ Console.CursorLeft+ "]“);
}
}
}