What is the UInt32 data type in Visual Basic .NET?

types, uint32, vb.net

Solution

It's an unsigned 32 bit integer:

- U for unsigned

- Int for integer

- 32 for 32

Or you could just look at the documentation:

Represents a 32-bit unsigned integer.

Problem

What is the `UInt32` datatype in VB.NET? Can someone inform me about its bit length and the differences between `UInt32` and `Int32`? Is it an integer or floating point number?

Original source