O
Opa1
using BitConverter.ToString() in Compact Framework has some bugs.
The resulting hex string does not have a consistent format for each
byte converted from the input byte array.
for example:
Byte array with values,
(9,0,0,0,115,105,103,110,97,116,117,114,101,224,0,0,0,51,0,0,0,1)
result in,
"9-00-00-00-73-69-67-6E-61-74-75-72-65-E0-00-00-00-33-00-00-00-1"
should be,
"09-00-00-00-73-69-67-6E-61-74-75-72-65-E0-00-00-00-33-00-00-00-01"
I read some where that it has been fixed. I have .NET 1.1 Version
1.1.4322.
Is there a new update.
Does someone have a workaround function?
The resulting hex string does not have a consistent format for each
byte converted from the input byte array.
for example:
Byte array with values,
(9,0,0,0,115,105,103,110,97,116,117,114,101,224,0,0,0,51,0,0,0,1)
result in,
"9-00-00-00-73-69-67-6E-61-74-75-72-65-E0-00-00-00-33-00-00-00-1"
should be,
"09-00-00-00-73-69-67-6E-61-74-75-72-65-E0-00-00-00-33-00-00-00-01"
I read some where that it has been fixed. I have .NET 1.1 Version
1.1.4322.
Is there a new update.
Does someone have a workaround function?