「C#」TimeSpanオブジェクトを利用するサンプル

TimeSpan cft = new TimeSpan(1, 30, 0);

//日
Console.WriteLine(cft.Days);

//時間
Console.WriteLine(cft.Hours);

//分
Console.WriteLine(cft.Minutes);

//秒
Console.WriteLine(cft.Seconds);

Software

Posted by arkgame