PBCaGw.DataPacket.GetUInt32 C# (CSharp) Method

GetUInt32() public method

Returns an UInt32 at a given position
public GetUInt32 ( int position ) : UInt32
position int
return System.UInt32
        public UInt32 GetUInt32(int position)
        {
            return ((uint)Data[position + 0 + Offset] << 24)
                | ((uint)Data[position + 1 + Offset] << 16)
                | ((uint)Data[position + 2 + Offset] << 8)
                | Data[position + 3 + Offset];
        }