System.VarintBitConverter.ToUInt32 C# (CSharp) 메소드

ToUInt32() 공개 정적인 메소드

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