将输出秒数转换为时间格式 c# console
如何将秒输出转换为分钟:秒格式?
我想使用这段代码来做到这一点。
我只能看到几秒钟。
只是想显示分钟:秒类型(无小时) 我正在使用.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了有效的答案。
这按预期工作。
i found working answer.
This works as expected.