Example #1
0
        public void WriteInt64BE(Int64 value)
        {
            CheckImmutable();
            ByteArrayHelpers.WriteInt64BE(
                _proxy,
                0,
                value);

            int count = sizeof(Int64);

            WriteBytes(
                _proxy,
                0,
                count);
        }