M Mubashir Khan Sep 20, 2005 #2 System.TimeSpan TS = new System.TimeSpan(startDate.Ticks-endDate.Ticks); return TS.TotalMilliseconds
D Daniel Junges Sep 20, 2005 #3 Hi Daniel, use this TimeSpan dt = DateTime.Now.Subtract( otherDateTime) ); timeinMillis = (long)dt.TotalMilliseconds; regards Daniel junges
Hi Daniel, use this TimeSpan dt = DateTime.Now.Subtract( otherDateTime) ); timeinMillis = (long)dt.TotalMilliseconds; regards Daniel junges