Having some fun...

<GeekMessage>

byte[] message = new byte[]
	{71, 77, 97, 105, 108, 32, 73, 110, 118, 105, 116,
	101, 115, 32, 65, 118, 97, 105, 108, 97, 98, 108, 101};

byte[] contact = new byte[]
	{69, 109, 97, 105, 108, 32, 102, 105, 114, 115, 116, 32, 38, 32, 
	108, 97, 115, 116, 32, 110, 97, 109, 101, 32, 116, 111, 32, 112, 
	97, 116, 114, 105, 99, 107, 64, 109, 118, 112, 115, 46, 111, 114, 103};

Console.WriteLine(Encoding.ASCII.GetString(message));
Console.WriteLine(Encoding.ASCII.GetString(contact));

</GeekMessage>

3 Comments

  • byte[] message = new byte[]

    { 78, 111, 32, 116, 104, 97, 110, 107, 115, 44,

    32, 97,108, 114, 101, 97, 100, 121, 32, 103,

    111, 116, 32, 102, 97,114, 32, 116, 111, 111, 32, 109, 97, 110, 121, 46 };

    Console.WriteLine(Encoding.ASCII.GetString(message));

  • byte[] message = new byte[]

    { 78, 111, 32, 116, 104, 97, 110, 107, 115, 44,

    32, 97,108, 114, 101, 97, 100, 121, 32, 103,

    111, 116, 32, 102, 97,114, 32, 116, 111, 111, 32, 109, 97, 110, 121, 46 };

    Console.WriteLine(Encoding.ASCII.GetString(message));

  • That's too funny! Thanks for the offer, but I'll pass...

Comments have been disabled for this content.