Added ASCII art in Exit, but some are not finished

ASCII art in C# won't allow type "\", otherwise C# thinks it's error.
Others were not finished yet.
This commit is contained in:
MartinEesmaa 2022-02-23 16:41:59 +11:00 committed by GitHub
parent 06ad24ae68
commit 8d3dc26399
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,6 +94,35 @@ namespace VVCEasy
goto helpingvvc;
}
}
else if (input == "4")
{
Console.Clear();
Console.Title = "Have a wonderful day!";
Console.WriteLine("Have a wonderful day! Thank you for using VVCEasy. :)");
Console.WriteLine(" _ _ _ \n | | | | | | \n | |_| |__ __ _ _ __ | | ___ _ ___ _ _ \n | __| '_ / / _` | '_ /| |/ / | | |/ _ /| | | |\n | |_| | | | (_| | | | | <| |_| | (_) | |_| |\n /__|_| |_|/__,_|_| |_|_|/_\\__, |/___/ /__,_|\n __/ | \n |___/\n\n\n __ ____ _______ ______ \n / / / // / / / ____| ____| \n / // / / // /| | | __| / _` / __| | | |\n / / / / | |____| |___| (_| /__ / |_| |\n // // /_____|______/__,_|___//__, |\n __/ |\n |___/ \n\n\n __ __ _ _ ______ \n | // | | | (_) | ____| \n | / / | __ _ _ __| |_ _ _ __ | |__ ___ ___ _ __ ___ __ _ __ _ \n | |//| |/ _` | '__| __| | '_ / | __| / _ // __| '_ ` _ / / _` |/ _` |\n | | | | (_| | | | |_| | | | | | |___| __//__ / | | | | | (_| | (_| |\n |_| |_|/__,_|_| /__|_|_| |_| |______/___||___/_| |_| |_|/__,_|/__,_|");
Thread.Sleep(3000);
exit = true;
}
else if (input == "5")
{
}
else if (input == "6")
{
}
else if (input == "7")
{
}
else if (input == "8")
{
}
else if (input == "9")
{
}
}
while (exit == false);
}