Beispiel #1
0
 internal static bool IsNumericType(TypeUsage type)
 {
     if (!TypeSemantics.IsIntegerNumericType(type) && !TypeSemantics.IsFixedPointNumericType(type))
     {
         return(TypeSemantics.IsFloatPointNumericType(type));
     }
     return(true);
 }