Android Question Byte Capacity

BarryW

Active Member
Licensed User
Longtime User
Hi masters, first here is my code ....

Dim b() As Byte = Array As Byte(120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130)
For Each i As Int In b
Log(i)
Next

Log result is: 120, 121, 122, 123, 124, 125, 126, 127, -128, -127, -126

My Question is why does it not return the true value of 128, 129 and 130?

Pls help. Tnx . . .
 
Top