I've been writing a c# app which writes logs to a file on physical disk, but i've noticed a strange behavior of a TimeGenerated property - the local date on a computer is xx.xx.2056(don't ask why), but the value of the property gives xx.xx.1920 year and the time doesn't match either.
Here is the code:
using (EventLog log = new EventLog("Application", "."))
{
using (StreamWriter sw = new StreamWriter("events.log"))
{
foreach (EventLogEntry e in log.Entries)
{
sw.WriteLine("{0} : {1} : {2}", e.TimeGenerated, e.EntryType, e.Message);
}
}
}
Thanks in advance.