public void Test009()
        {
            var type = new TypeReflection();

            Assert.IsTrue(type.IsNullAssignable(typeof(int?)));
        }
        public void Test010()
        {
            var type = new TypeReflection();

            Assert.IsTrue(type.IsNullAssignable(typeof(string)));
        }
        public void Test011()
        {
            var type = new TypeReflection();

            Assert.IsFalse(type.IsNullAssignable(typeof(int)));
        }