I am wondering if there is a system function which will tell me if a type represents a numeric value (for a custom TypeConverter). Sure checking for each type known type works ok, but I don't really like it.
if (destinationType == typeof( int))
return true;
if (destinationType == typeof( Int16))
return true;
if (destinationType == typeof( Int32))
return true
...
if (destinationType == typeof( float))
return true;
...
Thanks.