RFID.RFIDInterface.PacketData.Parse_UInt32 C# (CSharp) Method

Parse_UInt32() private static method

private static Parse_UInt32 ( byte buffer, int offset ) : UInt32
buffer byte
offset int
return System.UInt32
        private static UInt32 Parse_UInt32(byte[] buffer, int offset)
        {
            UInt32 result = BitConverter.ToUInt32(buffer, offset);
            //			result = (uint)System.Net.IPAddress.NetworkToHostOrder((int)result);
            return result;
        }