Skip to content

Instantly share code, notes, and snippets.

@wridgers
Created February 7, 2013 23:31
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save wridgers/4735211 to your computer and use it in GitHub Desktop.
PS D:\Dev\projects\john\bin> Measure-Command { .\debug\john.exe }
Days : 0
Hours : 0
Minutes : 0
Seconds : 0
Milliseconds : 600
Ticks : 6008259
TotalDays : 6.95400347222222E-06
TotalHours : 0.000166896083333333
TotalMinutes : 0.010013765
TotalSeconds : 0.6008259
TotalMilliseconds : 600.8259
PS D:\Dev\projects\john\bin> Measure-Command { .\release\john.exe }
Days : 0
Hours : 0
Minutes : 0
Seconds : 0
Milliseconds : 36
Ticks : 363575
TotalDays : 4.20804398148148E-07
TotalHours : 1.00993055555556E-05
TotalMinutes : 0.000605958333333333
TotalSeconds : 0.0363575
TotalMilliseconds : 36.3575
PS D:\Dev\projects\john\bin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment