private const string Map =
....................................................................
************** * *** ** * ******************************
********************* ** ** * * ****************************** *
** ***************** ******************************
************* ** * **** ** ************** *
********* ******* **************** * *
******** *************************** *
* * **** *** *************** ****** ** *
**** * *************** *** *** *
****** ************* ** ** *
******** ************* * ** ***
******** ******** * *** ****
********* ****** * **** ** * **
********* ****** * * *** * *
....................................................................
public const string Name = "BitMap";
public const string Description = "BitMap Game";
Console.WriteLine(Description);
Console.WriteLine("\nWanna play?! Let's play !");
Console.WriteLine("Enter the message to display with the bitmap.");
string message = Console.ReadLine();
if (!string.IsNullOrEmpty(message))
for (int i = 0; i < Map.Length; i++)
Console.Write(message[i % message.Length]);
Console.WriteLine("Wanna play again?!");
var answer = Console.ReadLine();
if (answer == null || !answer.Contains("y", StringComparison.OrdinalIgnoreCase))
Console.WriteLine("Thanks for this game!");
public static void Main()
Console.WriteLine("UniLecs Game");
var bitmap = new Bitmap();