NServiceBus.CallbackSupportTypeExtensions.IsInt C# (CSharp) Method

IsInt() static private method

static private IsInt ( this instanceType ) : bool
instanceType this
return bool
        static bool IsInt(this Type instanceType)
        {
            return instanceType == typeof(int) ||
                   instanceType == typeof(short) ||
                   instanceType == typeof(long);
        }
    }
CallbackSupportTypeExtensions