Exemple #1
0
        public bool IsNotValueTypeOfTest <T>(T value)
        {
            bool result = TypeTestingUtility.IsNotValueTypeOf <T>(value);

            return(result);
            // TODO: add assertions to method TypeTestingUtilityTests.IsNotValueTypeOfTest(!!0)
        }
Exemple #2
0
 /// <summary>
 ///		Checks if the <paramref name="value"/> type is not a value type.
 /// </summary>
 /// <typeparam name="T">The type to test.</typeparam>
 /// <param name="value">The <typeparamref name="T"/> to check.</param>
 /// <returns>
 ///		<see langword="true"/> if the <paramref name="value"/> is not a value type; otherwise, <see langword="false"/>.
 /// </returns>
 public static Boolean IsNotValueTypeOf <T>([CanBeNull] this T value)
 {
     return(TypeTestingUtility.IsNotValueTypeOf(value));
 }