Exemple #1
0
        public bool IsNotBoxedTypeOfTest <T>(object valueBoxed)
        {
            bool result = TypeTestingUtility.IsNotBoxedTypeOf <T>(valueBoxed);

            return(result);
            // TODO: add assertions to method TypeTestingUtilityTests.IsNotBoxedTypeOfTest(Object)
        }
Exemple #2
0
 public static Boolean IsNotBoxedTypeOf <T>([CanBeNull] this Object valueBoxed)
 {
     return(TypeTestingUtility.IsNotBoxedTypeOf <T>(valueBoxed));
 }