|
-
July 26th, 2004, 04:55 AM
#1
Reading hexadecimal values from a file.
Hi,
Say, I have a text file containing hexadecimal values like this 55 4E 54 13 00 (with space in between).
Now I want to read these values from a file and store these values into a byte array as follows:
byte[] temp;
temp[0] = 55
temp[1] = 4E
temp[2] = 54
temp[3] = 13
temp[4] = 00
How can this be done?
regards,
buddy
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|