Ejemplo n.º 1
0
 private static void MarshalInt32Array(Int32Array buffer)
 {
     _intBuffer = buffer.ToArray();
 }
Ejemplo n.º 2
0
 private static void MarshalArrayBufferToInt32Array(ArrayBuffer buffer)
 {
     using (var ints = new Int32Array(buffer))
         _intBuffer = ints.ToArray();
 }
Ejemplo n.º 3
0
 public static void MarshalInt32Array(Int32Array buffer)
 {
     intBuffer = buffer.ToArray();
 }