/// <summary> /// Determines whether one generic value is greater than or equal to the other. /// </summary> /// <typeparam name="T"></typeparam> /// <param name="first"></param> /// <param name="second"></param> /// <returns></returns> public static bool GreaterThanOrEqual <T>(T first, T second) { return(SingleType <T> .GreaterThanOrEqual(first, second)); }