I have the following Java code working as expected, to convert some numbers to an array of Bytes before writing to a stream.
byte[] var1 = new byte[]{
(byte)-95,
(byte)(240 / 256 / 256 % 256),
(byte)(240 / 256 % 256),
(byte)(240 % 256),
(byte)0
};
I need to write the same in VB .net I tried the following code in VB .net, but no success.
Dim var1(4) As Byte
var1(0) = Byte.Parse(-95)
var1(1) = Byte.Parse(240 / 256 / 256 Mod 256)
var1(2) = Byte.Parse(240 / 256 Mod 256)
var1(3) = Byte.Parse(240 Mod 256)
var1(4) = Byte.Parse(0)
Am I doing it wrong.? How to get it done properly..
Thank you.
to no availmean? What was the error or output? Also note that Byte.Parse parses a string, not an integer, as noted in the documentation.