Poehoe.BinairFormaat.Integer C# (CSharp) Method

Integer() public method

public Integer ( ) : int
return int
        public int Integer()
        {
            byte[] read = Bytes(4);
            return (int)(read[0] | (read[1] << 8) | (read[2] << 16) | (read[3] << 24));
        }
        public long Long()