Larry__Weiss replied to PaulChavez
18-Mar-10 12:43 PM
Thanks! I did not expect it to be so straightforward.
That makes me wonder about the units involved in ticks.
How many ticks equal one second?
I guess I can get PowerShell to tell me:
PS C:> $a1 = [datetime] "March 18, 2010 11:23:01 AM"
PS C:> $a1n = [long](($a1).ticks.tostring())
PS C:> $a2 = [datetime] "March 18, 2010 11:23:02 AM"
PS C:> $a2n = [long](($a2).ticks.tostring())
PS C:> $a2n - $a1n
10000000
So there must be 10,000,000 ticks per second.
Did I do that right?
- Larry