Пример #1
0
        public bool IsNullableTypeTest <T>(T value)
        {
            bool result = TypeTestingUtility.IsNullableType <T>(value);

            return(result);
            // TODO: add assertions to method TypeTestingUtilityTests.IsNullableTypeTest(!!0)
        }
Пример #2
0
 public static Boolean IsNullableType <T>([CanBeNull] this T value)
 {
     return(TypeTestingUtility.IsNullableType(value));
 }