You need to use Int32, since this type can be used to store positive and negative numeric values in a range from -2,147,483,648 to +2,147,483,647.
UInt32 and UInt16 can not be used because they are used to store only positive values.
Int16 can not be used since its range of possible values is from -32768 to +32767.
Login in to like
Login in to comment