public bool IsBoxedTypeOfTest <T>(object valueBoxed) { bool result = TypeTestingUtility.IsBoxedTypeOf <T>(valueBoxed); return(result); // TODO: add assertions to method TypeTestingUtilityTests.IsBoxedTypeOfTest(Object) }
public static Boolean IsBoxedTypeOf <T>([CanBeNull] this Object valueBoxed) { return(TypeTestingUtility.IsBoxedTypeOf <T>(valueBoxed)); }