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