I want to create a program that prints out a string at any given coordinates with any foreground and background colors in a console application. For example, if the string contains "Hello!" i would like the "Hello!" text to be written out in the console, depending on where i put the coordinates. Here is my code:
class PrintString
{
public int x, y; // Coordinates
public string Text = "Hello!";
ConsoleColor color;
public PrintString(int x, int y, string Text)
{
Console.ForegroundColor = color;
Console.SetCursorPostion(x, y);
Console.Write(Text);
Console.ResetColor();
}
public void Draw()
{
// Here I have no idea on how I should write the code for drawing the string?
}
}
When i run this code i get: Error 4 System.Console does not contain a definition for SetCursorPostion
My question is, What am i missing for this to be as I wish?

Drawmethod should be? – Ilya Ivanov Feb 9 at 16:44