Declaration
public static bool IsIntegerCompatibleType(
TypeCode typeCode
)
Summary
Returns true if the specified type is integer-compatible (in other words, a string of digits can be converted
to it using
ExactConvert). This includes all types that are
ExactConvert.IsTrueIntegerType(Type) as well as DateTime, Char and Boolean.
Parameters
TypeCode | typeCode |
The code of the type to be tested - use ExactConvert.GetTypeCode(object) to get the code of an object's type. |