Skip to content

Instantly share code, notes, and snippets.

@hagbarddenstore
Created June 27, 2014 09:15
Show Gist options
  • Save hagbarddenstore/b8ffa0006b47af1fff2f to your computer and use it in GitHub Desktop.
Save hagbarddenstore/b8ffa0006b47af1fff2f to your computer and use it in GitHub Desktop.
void Main()
{
var s = File.ReadAllLines("C:\\Users\\kim\\Desktop\\ReportingEvents.log").Last(x => x.ToLower().Contains("installation successful")).Substring(39,19);
Console.WriteLine(s);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment