본문 바로가기

Programing

C# 데이터 타입 및 C,C++,VB와 비교표

< C# 데이터 타입 및 C,C++,VB와 비교표 >

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

출처 - http://blog.daum.net/wowtcg/81

'Programing' 카테고리의 다른 글

signed 8bit(1byte) hex 값  (0) 2019.02.07
아스키 코드 표  (0) 2011.04.06