Hi i have to display various symbols at different places in the console window using x and y coordinates however i am not allowed to use the Console.SetCursorPosition()
method. This is how it was done with the method
string k="$";
string l="%";
Console.SetCursorPosition(30, 20);
Console.Write(k);
Console.SetCursorPosition(15, 6);
Console.Write(l);
Console.ReadLine();
I need a way around using the Console.SetCursorPosition()
method. Any alternatives will help i was told to use treat it like looping through a multi-dimensional array but i have made no headway. thanks alot for all the help in advanced