SetUInt8() 개인적인 메소드

private SetUInt8 ( uint byteOffset, Byte value ) : void
byteOffset uint
value Byte
리턴 void
예제 #1
0
 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);
 }