예제 #1
0
 public static bool IsDouble(this Type type)
 {
     return(TypeInspector.IsDoubleType(type));
 }
예제 #2
0
 public static bool IsNumeric(this Type type)
 {
     return(TypeInspector.IsNumericType(type));
 }
예제 #3
0
 public static bool IsSignedInteger(this Type type)
 {
     return(TypeInspector.IsSignedIntegerType(type));
 }