Hi nicoriff,
There's no automatic mapping; you'd have to convert the
As for which array type to use, that depends on which side is doing most of the array access. If the answer is "both", and if we're talking about a large array, then explicit conversion might be the best option.
Cheers!
There's no automatic mapping; you'd have to convert the
Uint8Array
array to System.Byte[]
explicitly. Recent ClearScript versions provide a fast API for that.As for which array type to use, that depends on which side is doing most of the array access. If the answer is "both", and if we're talking about a large array, then explicit conversion might be the best option.
Cheers!