Skip to content

Instantly share code, notes, and snippets.

@Ormadont
Created March 23, 2019 16:26
Show Gist options
  • Save Ormadont/27a093ba40c775531ef6b8b74b698ee9 to your computer and use it in GitHub Desktop.
Save Ormadont/27a093ba40c775531ef6b8b74b698ee9 to your computer and use it in GitHub Desktop.
Время первого события текущего дня из журнала событий Windows
sysLog = new EventLog();
sysLog.Log = "System";
IEnumerable<EventLogEntry> Entries = sysLog.Entries.Cast<EventLogEntry>();
// время первого события текущего дня
var startTime =
(from l in Entries
where l.TimeGenerated.DayOfYear == nowTime.DayOfYear // только события сегодняшнего дня
select l.TimeGenerated)
.Min();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment