You can do it using the following method.
public static byte[] toByteArray(ubyte[] array)
{
if (array == null) return (byte[])null;
byte[] byteArray = new byte[array.length];
System.Buffer.BlockCopy(array, 0, byteArray, 0,
array.length);
return byteArray;
}
Kazuya Ujihara <ujihara.jp>
> Hi;
>
[quoted text clipped - 9 lines]
> Barbie Science Fair -- http://www.BarbieScienceFair.info
> (yes I have lots of links)