コード例 #1
0
ファイル: GenericOperator.cs プロジェクト: razluta/jazz2
 /// <summary>
 /// Determines whether one generic value is less than or equal to the other.
 /// </summary>
 /// <typeparam name="T"></typeparam>
 /// <param name="first"></param>
 /// <param name="second"></param>
 /// <returns></returns>
 public static bool LessThanOrEqual <T>(T first, T second)
 {
     return(SingleType <T> .LessThanOrEqual(first, second));
 }