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>