COMPUTER LANGUAGE/C#
-
[C#] 데이터 타입COMPUTER LANGUAGE/C# 2019. 5. 31. 10:43
C# 데이터 타입 설명 .NET 데이터 타입 int 32비트 integer System.int32 uint 32비트 정수형 integer System.UInt32 double 64비트 부동소수점 System.Double decimal 128비트 Decimal System.Decimal char 16비트 유니코드 문자 System.Char string 유니코드 문자열 System.String Object 모든 타입의 기본 클래스 유형 포함 System.Object long 64비트 integer System.Int64 ulong 64비트 정수형 integer System.UInt64 short 16비트 integer System.Int16 ushort 16비트 정수형 integer System.UInt16..