Example #1
0
        /// <summary>
        /// Add an <see cref="System.Int16"/> (Little-endian) to the writer
        /// </summary>
        /// <param name="value"></param>
        /// <remarks>
        /// This functionality is not allowed when the writer has been sealed
        /// </remarks>
        public void WriteInt16LE(Int16 value)
        {
            CheckImmutable();
            ByteArrayHelpers.WriteInt16LE(
                _proxy,
                0,
                value);

            WriteBytes(
                _proxy,
                0,
                2);
        }
Example #2
0
 public void WriteInt16LE(short value)
 {
     this.CheckImmutable();
     ByteArrayHelpers.WriteInt16LE(this._proxy, 0, value);
     this.WriteBytes(this._proxy, 0, 2);
 }