基本 [VB.NET] データ型一覧 ゆるゆる社内SE 2019年11月23日 基本的な型の一覧です。 右にスクロールしてご参照ください。 型.NET Frameworkの型説明サイズ範囲初期値 型.NET Frameworkの型説明サイズ範囲初期値 Byte System.Byte 符号なし整数 8bit 0~255 0 UShort System.UInt16 符号なし整数 16bit 0 ~ 65,535 0 UInteger 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 Integer 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 Single 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 文字列型 環境依存 Boolean System.Boolean 論理型 環境依存 True/False False Object System.Object 全ての型の基底 VB.NET