CTS 크기 부호 C C++ C#
System.Byte 1 없음 Unsigned char Unsigned char byte
System.SByte 1 있음 char signed char sbyte
System.Int16 2 있음 short short short
System.UInt16 2 있음 unsigned short unsigned short ushort
System.Int32 4 있음 int int 또는 long int
System.UInt32 4 없음 unsigned int unsigned(long) uint
System.Int64 8 있음 long __int64 long
System.UInt64 8 없음 unsigned long unsigned __int64 ulong
System.Char 2 없음 wchar_t wchar_t char
System.Single 4 있음 float float float
System.Double 8 있음 double double double
System.Decimal 16 있음 없음 Decimal decimal
System.Boolean 1   bool bool bool
System.String 가변   없음 string string
System.Object 가변   없음 Object * object

AND