[C#] 데이터 타입 (이름, 범위, 디폴트 값)
타 입 실제이름 범 위 sbyte System.SByte -128 에서 127 까지 byte System.Byte 0 에서 255 까지 char System.Char 하나의 유니코드 문자. U+0000 에서 U+FFFF 까지 short System.Int16 -32,768 에서 32,767 까지 ushort System.UInt16 0 에서 65,535 까지 int System.Int32 -2,147,483,648 에서 2,147,483,647 까지 uint System.UInt32 0 에서 4,294,967,295 까지 long System.Int64 -9,223,372,036,854,775,808 에서 9,223,372,036,854,775,807 까지 ulong System.UInt64 0 에서 1..
더보기