hi im trying to paste ascii art and make it into the center of the screen in C#, it prints normal text to the center of the screen but not ascii art, any ideas? (sorry im new to C#)
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
string textToEnter = @"
/$$$$$$$$ /$$$$$$$$ /$$$$$$ /$$$$$$$$
|__ $$__/| $$_____/ /$$__ $$|__ $$__/
| $$ | $$ | $$ \__/ | $$
| $$ | $$$$$ | $$$$$$ | $$
| $$ | $$__/ \____ $$ | $$
| $$ | $$ /$$ \ $$ | $$
| $$ | $$$$$$$$| $$$$$$/ | $$
|__/ |________/ \______/ |__/
";
Console.WriteLine(String.Format("{0," + ((Console.WindowWidth / 2) + (textToEnter.Length / 2)) + "}", textToEnter));
Console.Read();
Console.WriteLine("Hello World!");
}
}
}