0x0100CE6EE7655EC6B23C78209BADE0556A6F457E0B7CAA4B 67 reads like one (very large) number, so if it has to be this exact format you'll probably have to do it yourself. The key is probably the ToString("X") method of the byte.
Something like this:
Code:
System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append("0x");
foreach (byte b in bytes)
{
sb.AppendFormat("{0:X2}", b);
}
Console.WriteLine(sb.ToString());
/- Sam Judson : Wrox Technical Editor -/