C# 秒数转换时分秒

        /// 
        /// 秒数转换 
        /// 
        /// 
        /// 
        public static string ParseTimeSeconds(double second)
        {
            var timeSpan = TimeSpan.FromSeconds(second);
            var result = "";
            if (timeSpan.Days > 0)
                result = timeSpan.Days + "天";
            if (timeSpan.Hours > 0)
                result += timeSpan.Hours + "时";
            if (timeSpan.Minutes > 0)
                result += timeSpan.Minutes + "分";
            if (timeSpan.Seconds > 0)
                result += timeSpan.Seconds + "秒";

            return result??null;
        }

 

你可能感兴趣的:(C# 秒数转换时分秒)