0
Why it isn't work?
If i write: Byte[] mas = Byte[1] {10}; mas[0] += 10; It's work, but if: Byte[] mas = Byte[1] {10}; int x = 10; mas[0] += x; It's error?
1 Resposta
If i write: Byte[] mas = Byte[1] {10}; mas[0] += 10; It's work, but if: Byte[] mas = Byte[1] {10}; int x = 10; mas[0] += x; It's error?