hch
1 天以前 cfe2a2d5bc6fe9a85488542597d4f73dddbfeee8
Main/Utility/TimeUtility.cs
@@ -252,6 +252,7 @@
        return StringUtility.Contact(hours.ToString("D2"), ":", mins.ToString("D2"), ":", seconds.ToString("D2"));
    }
    //详细显示
    //xx小时xx分XX秒
    //xx分XX秒
@@ -495,6 +496,17 @@
    }
    // 到10点还要多少秒,如果已经过了10点,返回0
    public static int GetToTenClockSeconds()
    {
        var now = ServerNow;
        if (now.Hour < 10)
        {
            return (int)(ServerNow - new DateTime(now.Year, now.Month, now.Day, 10, 0, 0)).TotalSeconds;
        }
        return 0;
    }
    //开服天结束倒计时;单位秒
    public static int GetRemindTimeByOpenDay(int days)
    {