Timer

  • Thread starter Thread starter Vinay
  • Start date Start date
Scott

I want to calculate the Interval Value for different Scenarios

Ex : 1 hr, 1 Day, 1 week, 1 Month

How much Interval value should i set for the above examples??
 
Look at the TimeSpan class, Vinay. There are static methods to create
a TimeSpan out of an interval (FromDays, FromHours), and a
Milliseconds property to get how many ms the interval represents.
 
Back
Top