I'm looking for some code to convert a UINT32 to a 4 character string (least significant byte last). The 4 bytes in the UINT32 are AscII coded.
Example: &h2e4e6574 -> ".Net"
I already made a working example using GCHandle and Marshal'ing to copy the bytes from the UINT32 to a byte array, but the code isn't all that pretty and the resulting byte array will need to be reversed before it's AscII encoded to string.
Posting here to get some inspiration for a better or simpler way of doing this.
Thank you in advance
Thomas




Reply With Quote