I have an array of type byte[4] that is length four.
These bytes all combined together represent a single number
I need to add a variable number to this representation.
What is the easiest way to do this?
So for example lets assume the four bytes represent the number 32453245, I need to add lets say 53445 to the number representing in the array.
Thank You
