C
cronusf
If I allocate a byte array:
byte[,,] = new byte[rows, cols, slices];
are the elements zeroed out, or do I need to manually call Initialize
()?
byte[,,] = new byte[rows, cols, slices];
are the elements zeroed out, or do I need to manually call Initialize
()?