What is a byte
array is in the context of .NET framework?
I am familiar with standard definitions like array
and byte
and very fam
Byte Array: An array which only has elements of Byte type. Byte: Positive integer number between 0 and 255, closed intervallum. A and B are two bytes.
If C = A + B, then, mathematically, C = (A + B) modulo 256 If C = A - B, then, mathematically, C = (A - B) modulo 256
So, you could consider (and sometimes use) your Byte Array of n elements as a number in the radix of 256, with n digits.