How do i convert a byte[] to a string, every time i attempt it i get System.Byte[] instead of the value.
Also How do i get the value in Hex instead of a decimal?
|
2
|
|
|
|
|
|
There is a built in method for this:
Result: 01-02-04-08-10-20 If you want it without the dashes, just remove them:
Result: 010204081020 If you want a more compact representation, you can use Base64:
Result: AQIECBAg |
||
|
|
You have to know the encoding of the string represented in bytes, but you can say For the answer to your second question, see this question. |
||
|
|
|
|
Well I don't convert bytes to hex often so I have to say I don't know if there is a better way then this, but here is a way to do it.
|
||||||||||
|
|
|
As others have said it depends on the encoding of the values in the byte array. Despite this you need to be very careful with this sort of thing or you may try to convert bytes that are not handled by the chosen encoding. Jon Skeet has a good article about encoding and unicode in .NET. Recommended reading. |
||
|
|
|
|
Hex, Linq-fu:
|
|||
|