/// <summary> /// Determines whether the provided <see cref="T:System.Int16"/> value is negative. /// </summary> /// <param name="value">The <see cref="T:System.Int16"/> value to test.</param> /// <returns> /// <see langword="true"/> if the <see cref="T:System.Int16"/> value is negative; otherwise, <see langword="false"/>. /// </returns> public static Boolean IsNegative(Int16 value) { return(value.IsLessThan(0)); }