バージョン

IsNumericType メソッド

指定された型が数値かどうかを示すブール値を返します。
シンタックス
'宣言
 
Public Shared Function IsNumericType( _
   ByVal type As Type _
) As Boolean
public static bool IsNumericType( 
   Type type
)

パラメータ

type
テストする System.Type。
解説

このメソッドは次のタイプに True を返します。

  • System.Byte (byte)
  • System.SByte (sbyte)
  • System.Int16 (short)
  • System.Int32 (int)
  • System.Int64 (long)
  • System.UInt16 (ushort)
  • System.UInt32 (uint)
  • System.UInt64 (ulong)
  • System.Single (float)
  • System.Double (double)
  • System.Decimal (decimal)

参照