C#
[C#] DataType 값 형식
mongyang
2013. 7. 3. 11:56
C# 에서 사용하는 DataType에 대해서 정리.
1. 값 형식(Value Type)
- 숫자형 : sbyte, short, int, long, byte, ushort, uint, ulong, float, double, decimal
- bool
- char
- struct
- enum ..등
2. 참조 형식 ( Reference Type)
- string
- object
- class ... 등
3. 지원 형식
4. 사용 예시.