What is the best way to divide a 32 bit integer into four (unsigned) chars in C#.
feedback
|
|
Quick'n'dirty:
Converting the int to bytes, reversing the byte-array for the correct order and then getting the ASCII character representation from it. EDIT: the Reverse method is an extension method from .NET 3.5, just for info. Reversing the byte order may also not be needed in your scenario. Cheers, David | |||||||
feedback
|
|
Char? Maybe you are looking for this handy little helper function?
| |||
|
feedback
|
|
It's not clear if this is really what you want, but:
This assumes you want the bytes interpreted as the lowest range of Unicode characters. | |||
|
feedback
|
|
I have tried it a few ways and clocked the time taken to convert 1000000 ints. Built-in convert method, 325000 ticks:
Pointer conversion, 100000 ticks:
Bitshifting, 77000 ticks:
| ||||
|
feedback
|
|
Do get the 8-byte-blocks:
Do break the first three bytes down into a single byte, just divide them by the proper number and perform another logical and to get your final byte. Edit: Jason's solution with the bitshifts is much nicer of course. | |||
|
feedback
|
|
.net uses Unicode, a char is 2 bytes not 1 To convert between binary data containing non-unicode text use the System.Text.Encoding class. If you do want 4 bytes and not chars then replace the char with byte in Jason's answer | |||
feedback
|