BraintreeEncryption.Library.BouncyCastle.Crypto.Util.Pack.LE_To_UInt32 C# (CSharp) Метод

LE_To_UInt32() статический приватный Метод

static private LE_To_UInt32 ( byte bs ) : uint
bs byte
Результат uint
        internal static uint LE_To_UInt32(byte[] bs)
        {
            uint n = (uint)bs[0];
            n |= (uint)bs[1] << 8;
            n |= (uint)bs[2] << 16;
            n |= (uint)bs[3] << 24;
            return n;
        }

Same methods

Pack::LE_To_UInt32 ( byte bs, int off ) : uint