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

ToByte() public static méthode

Returns byte value from varint encoded array of bytes.
public static ToByte ( byte bytes ) : byte
bytes byte Varint encoded array of bytes.
Résultat byte
        public static byte ToByte(byte[] bytes)
        {
            return (byte)ToTarget(bytes, 8);
        }