Skip to content

Instantly share code, notes, and snippets.

@fresky
Created July 6, 2012 04:48
Show Gist options
  • Save fresky/3058170 to your computer and use it in GitHub Desktop.
Save fresky/3058170 to your computer and use it in GitHub Desktop.
Get the start time of C# process
System.Diagnostics.Process current = System.Diagnostics.Process.GetCurrentProcess();
DateTime startedTime = current.StartTime;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment