public void SetReturnValue(float[] buffer, int ofs, int count) { if (buffer == null) { this.SetReturnValue(NSJSValue.Null(this.VirtualMachine)); return; } this.SetReturnValue(NSJSFloat32Array.New(this.VirtualMachine, buffer, ofs, count)); }
public void Add(float *buffer, int count) { if (buffer == null) { this.Add(NSJSValue.Null(this.VirtualMachine)); return; } this.Add(NSJSFloat32Array.New(this.VirtualMachine, buffer, count)); }