I got this warning "opcode 'conv.ovf.i' -- overflow will not throw
exception" at each place where I create a new byte array with dynamic
length.
For example:
byte[] byteArray = new byte[streamLength];
What should I do to avoid this warning? Or what's the safe way to allocate a
dynamic byte array?
Thanks
Allen Dang