Plasma.pnCli2Auth_AcctLoginRequest.IWriteHashUInt C# (CSharp) Method

IWriteHashUInt() private method

private IWriteHashUInt ( Plasma.hsStream s, int i ) : void
s Plasma.hsStream
i int
return void
        private void IWriteHashUInt(hsStream s, int i)
        {
            byte[] buf = new byte[4];
            Buffer.BlockCopy(fHash, i * 4, buf, 0, 4);
            Array.Reverse(buf);
            s.WriteUInt(BitConverter.ToUInt32(buf, 0));
        }