But this just returns the letter, i wan't to be able to do this after i retrieve the byte:
1 2 3 4 5
int rs=#;//This will be what i get out from reading the text file with byte(5) in it.
if(rs==5)
{
//success!!!
}
This doesn't actually work though, instead of getting byte(5) out of the file that i saved byte(5) to, i just get some stange looking letter (obviously thats what byte(5) looks like in a string)
My main question is, how can i get the byte ID from a single character out of a text document :P