基本

[C#] データ型一覧

基本的な型の一覧です。
右にスクロールしてご参照ください。

.NET Frameworkの型 説明 サイズ 範囲 初期値
byte System.Byte 符号なし整数 8bit 0~255 0
ushort System.UInt16 符号なし整数 16bit 0 ~ 65,535 0
uint System.UInt32 符号なし整数 32bit 0 ~ 4,294,967,295 0
ulong System.UInt64 符号なし整数 64bit 0 ~ 18,446,744,073,709,551,615 0
sbyte System.SByte 符号あり整数 8bit -128 ~ 127 0
short System.Int16 符号あり整数 16bit -32,768~32,767 0
int System.Int32 符号あり整数 32bit -2,147,483,648 ~ 2,147,483,647 0
long System.Int64 符号あり整数 64bit -9,223,372,036,854,775,808 ~
9,223,372,036,854,775,807
0
float System.Single 単精度浮動小数点型 32bit 0.0
double System.Double 倍精度浮動小数点型 64bit 0.0
decimal System.Decimal 10進数型 128bit 0.0
char System.Char 文字型 16bit U+0000~U+ffff
string System.String 文字列型 環境依存
bool System.Boolean 論理型 環境依存 True/False False
object System.Object 全ての型の基底