NServiceBus.CallbackSupportTypeExtensions.IsIntOrEnum C# (CSharp) Method

IsIntOrEnum() static private method

static private IsIntOrEnum ( this instanceType ) : bool
instanceType this
return bool
        internal static bool IsIntOrEnum(this Type instanceType)
        {
            return instanceType.IsEnum() ||
                   instanceType.IsInt();
        }
CallbackSupportTypeExtensions