System.VarintBitConverter.ToUInt32 C# (CSharp) Méthode

ToUInt32() public static méthode

Returns 32-bit unsigned value from varint encoded array of bytes.
public static ToUInt32 ( byte bytes ) : uint
bytes byte Varint encoded array of bytes.
Résultat uint
        public static uint ToUInt32(byte[] bytes)
        {
            return (uint)ToTarget(bytes, 32);
        }