Example #1
0
 public void WriteInt32BE(int value)
 {
     this.CheckImmutable();
     ByteArrayHelpers.WriteInt32BE(this._proxy, 0, value);
     this.WriteBytes(this._proxy, 0, 4);
 }
Example #2
0
 public void WriteUInt16BE(ushort value)
 {
     this.CheckImmutable();
     ByteArrayHelpers.WriteUInt16BE(this._proxy, 0, value);
     this.WriteBytes(this._proxy, 0, 2);
 }