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

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