コード例 #1
0
        public bool IsBoxedTypeOfTest <T>(object valueBoxed)
        {
            bool result = TypeTestingUtility.IsBoxedTypeOf <T>(valueBoxed);

            return(result);
            // TODO: add assertions to method TypeTestingUtilityTests.IsBoxedTypeOfTest(Object)
        }
コード例 #2
0
 public static Boolean IsBoxedTypeOf <T>([CanBeNull] this Object valueBoxed)
 {
     return(TypeTestingUtility.IsBoxedTypeOf <T>(valueBoxed));
 }