RiakClient.Erlang.OtpInputStream.Read4BE C# (CSharp) Method

Read4BE() public method

Read a four byte big endian integer from the stream.
public Read4BE ( ) : int
return int
        public int Read4BE()
        {
            byte b0 = Read1();
            byte b1 = Read1();
            byte b2 = Read1();
            byte b3 = Read1();
            return (b0 << 24) + (b1 << 16) + (b2 << 8) + b3;
        }