What is sint32 type

14,296

Solution 1

It is signed 32 bit integer. In .Net it is System.Int32 and C# alias for it is int.

Some of the other ones on that list you may want to know

  • sint16 becomes System.Int16, or short
  • uint16 becomes System.UInt16, or ushort
  • uint32 becomes System.UInt32, or uint

Solution 2

It is a signed integer (the third item in the list)

Signed integer. 2's complement integer. e.g. an 3-bit SINT represents the integral values -4, -3, -2, -1, 0, 1, 2, 3.

Share:
14,296
Phiber
Author by

Phiber

Updated on June 04, 2022

Comments

  • Phiber
    Phiber almost 2 years

    What is the sint32 type?

    I found the type in this MSDN page

    If needed: I'm on Windows, VS2008, C#