예제 #1
0
 /// <summary>
 ///		Determines whether the provided <see cref="T:System.Int16"/> value is positive.
 /// </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 positive; otherwise, <see langword="false"/>.
 /// </returns>
 public static Boolean IsPositive(Int16 value)
 {
     return(value.IsGreaterThan(0));
 }