I have a byte array:
evenParityASCII[0] = 0xB1; // 1
evenParityASCII[1] = 0xB2; // 2
evenParityASCII[2] = 0x33; // 3
evenParityASCII[3] = 0xB4; // 4
evenParityASCII[4] = 0x35; // 5
I need to convert these to normal ASCII. Is there a simple way of doing this?
Are you looking for
System.Text.Encoding?