I want to create a program that prints out a string at any given coordinates. I have a main class and a class i created called ConsoleText. Here are the code for each class:
class ConsoleText
{
public int x, y; // Coordinates
public string Text = "Hello!";
ConsoleColor color;
public ConsoleText(int x, int y, string Text)
{
Console.ForegroundColor = color;
Console.SetCursorPosition(x, y);
Console.Write(Text);
Console.ResetColor();
}
}
and here is the program(main) class:
class Program
{
static void Main(string[] args)
{
ConsoleText obj = new ConsoleText(19, 1, "Hello!");
Console.Read();
}
}
My problem now is that when I debug the program, I get the positions for the coordinate but the string dosen“t write out at that specific coordinate. Any ideas on what i might have done wrong?