I wan't to be able to increase the value of content in my byte array.
For example if in my array I have got the value 1100001 what is an effective way of incrementing this value so that the contents of the array would show 1100010.
I thought that it would be something like the following but it doesn't seem to work.
ByteArray[i] = ByteArray[i]++;
Thanks in advance