SetUInt8() private method

private SetUInt8 ( uint byteOffset, Byte value ) : void
byteOffset uint
value Byte
return void
 public void TestSetGetUInt8() {
     Action f = () => {
         var b = new ArrayBuffer(16);
         var v = new DataView(b);
         v.SetUInt8(0, 5);
         v.SetUInt8(8, 6);
         Done(v.GetUInt8(0) == 5 && v.GetUInt8(8) == 6);
     };
     this.Start(f);
 }