3

如何使用 a 的值作为 aTimeSpan的间隔Timer

4

2 回答 2

7

从构造函数中获取总毫秒TimeSpan数:Timer

var timer = new Timer(someTimeSpanObject.TotalMilliseconds);
于 2013-06-15T11:44:54.693 回答
1

来自:http: //msdn.microsoft.com/en-us/library/system.timespan.totalmilliseconds.aspx

TimeSpan interval = new TimeSpan(1, 15, 42, 45, 750); 
Console.WriteLine("Value of TimeSpan: {0}", interval);
Console.WriteLine("{0:N5} seconds, as follows:", interval.TotalMilliSeconds);

您可以将 .TotalMilliSeconds 设置为您的 Interval 属性。

于 2013-06-15T11:44:47.787 回答