Example #1
0
 public void SetReturnValue(uint[] buffer, int ofs, int count)
 {
     if (buffer == null)
     {
         this.SetReturnValue(NSJSValue.Null(this.VirtualMachine));
         return;
     }
     this.SetReturnValue(NSJSUInt32Array.New(this.VirtualMachine, buffer, ofs, count));
 }
Example #2
0
 public void Add(uint *buffer, int count)
 {
     if (buffer == null)
     {
         this.Add(NSJSValue.Null(this.VirtualMachine));
         return;
     }
     this.Add(NSJSUInt32Array.New(this.VirtualMachine, buffer, count));
 }