Is there a simple way how to make byte arrays adding?
I mean a mathematical adding (no concatenation):
00 00 FF
00 00 FF
--------
00 01 FE
I can achieve that by converting the byte array to a numeric format, but this approach is limited by max value of the number format. I need a solution that can work with much larger values than standard formats provide.