将输出秒数转换为时间格式 c# console

发布于 2025-01-11 11:09:31 字数 863 浏览 1 评论 0原文

如何将秒输出转换为分钟:秒格式?

我想使用这段代码来做到这一点。

我只能看到几秒钟。

只是想显示分钟:秒类型(无小时) 我正在使用.net 2.0

using System;
using System.Timers;
using threadTimer = System.Threading;

namespace TimerExample
{
    class Program
    {
        static Timer timer = new Timer(1000);
        static int i = 0;

        static void Main(string[] args)
        {     
        
            Console.WriteLine("\n\n 1st");
            timer.Elapsed+=timer_Elapsed;
            timer.Start(); 
            threadTimer.Thread.Sleep (3000);  
            Console.Clear ();
            Console.WriteLine("\n\n 2nd");
            threadTimer.Thread.Sleep (3000);  
        }

        private static void timer_Elapsed(object sender, ElapsedEventArgs e)
        {
            i++;
            Console.Write("\r  Time Passed:  " + i.ToString());
        }
    }
}

How to convert seconds output to Minutes: Seconds Format?

I want to do this using this code.

I can see only seconds.

Just want to display Min:Sec type (No Hours)
im using .net 2.0

using System;
using System.Timers;
using threadTimer = System.Threading;

namespace TimerExample
{
    class Program
    {
        static Timer timer = new Timer(1000);
        static int i = 0;

        static void Main(string[] args)
        {     
        
            Console.WriteLine("\n\n 1st");
            timer.Elapsed+=timer_Elapsed;
            timer.Start(); 
            threadTimer.Thread.Sleep (3000);  
            Console.Clear ();
            Console.WriteLine("\n\n 2nd");
            threadTimer.Thread.Sleep (3000);  
        }

        private static void timer_Elapsed(object sender, ElapsedEventArgs e)
        {
            i++;
            Console.Write("\r  Time Passed:  " + i.ToString());
        }
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最笨的告白 2025-01-18 11:09:31

我找到了有效的答案。
这按预期工作。

using System;
using System.Timers;
using threadTimer = System.Threading;

namespace TimerExample
{
    class Program
    {
        static Timer timer = new Timer(1000);
        static int i = 0;


        static void Main(string[] args)
        {     
            
  
timer.Elapsed+=timer_Elapsed;
            timer.Start(); 
       Console.WriteLine("1st");
            
            
             threadTimer.Thread.Sleep (3000);  
             Console.Clear ();
             Console.Clear ();
           Console.WriteLine("2nd");
           threadTimer.Thread.Sleep (3000);  
            
        }

        private static void timer_Elapsed(object sender, ElapsedEventArgs e)
        {
            float TimeToMissionsReady =  i++;
            TimeSpan ts = TimeSpan.FromSeconds(TimeToMissionsReady);
            string elapsedTime = String.Format("{0:00 Minutes} and {1:00 Seconds}",
            ts.Minutes, ts.Seconds);
            Console.Write("\r   Time Passed:  " + elapsedTime);
        }
        
        

        
        
    }
}

i found working answer.
This works as expected.

using System;
using System.Timers;
using threadTimer = System.Threading;

namespace TimerExample
{
    class Program
    {
        static Timer timer = new Timer(1000);
        static int i = 0;


        static void Main(string[] args)
        {     
            
  
timer.Elapsed+=timer_Elapsed;
            timer.Start(); 
       Console.WriteLine("1st");
            
            
             threadTimer.Thread.Sleep (3000);  
             Console.Clear ();
             Console.Clear ();
           Console.WriteLine("2nd");
           threadTimer.Thread.Sleep (3000);  
            
        }

        private static void timer_Elapsed(object sender, ElapsedEventArgs e)
        {
            float TimeToMissionsReady =  i++;
            TimeSpan ts = TimeSpan.FromSeconds(TimeToMissionsReady);
            string elapsedTime = String.Format("{0:00 Minutes} and {1:00 Seconds}",
            ts.Minutes, ts.Seconds);
            Console.Write("\r   Time Passed:  " + elapsedTime);
        }
        
        

        
        
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文