Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何转换int为TimeSpan?
int
TimeSpan
示例486000000000是int刻度数。我希望它被表示为TimeSpan
486000000000
您可以使用 From 方法,这些方法将允许您将天/小时/分钟/秒/毫秒/刻度转换为 TimeSpam 格式,如下所示:
TimeSpan ts = TimeSpan.FromTicks(486000000000); Console.WriteLine(ts.ToString());
您可以替换FromTicks为
FromTicks