<div><div class="gmail_quote">On Mon, Aug 15, 2011 at 12:16 PM, mimocrocodil <span dir="ltr"><<a href="mailto:4denizzz@gmail.com">4denizzz@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

I obtain immutable(byte)* and int where contained length of bytes block from C library.<br>
<br>
Can I convert this into byte[] without explict copying etc.<br>
<br>
Something like:<br>
<br>
byte* p; // bytes<br>
int size; // size of bytes block<br>
<br>
byte[] b;<br>
b.length = size;<br>
b.ptr = p;<br>
<br>
// now b contains bytes from library<br></blockquote><div><br></div><div><br></div><div>Yes:</div><div><br></div></div></div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">

<div><div class="gmail_quote"><div>byte[] b = p[0 .. size]; </div></div></div></blockquote><div><br></div>