On 8/15/11 7:16 PM, mimocrocodil wrote:
Can I convert this into byte[] without explict copying etc. […] byte* p; // bytes int size; // size of bytes block
Simply slice the pointer: p[0 .. size] David
On 8/15/11 7:16 PM, mimocrocodil wrote:
Can I convert this into byte[] without explict copying etc. […] byte* p; // bytes int size; // size of bytes block
Simply slice the pointer: p[0 .. size] David