コード例 #1
0
        public bool IsNotNullableTypeTest <T>(T value)
        {
            bool result = TypeTestingUtility.IsNotNullableType <T>(value);

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