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