I'm trying to get a notification event in .NET core/Standard (as I need to do plan future actions). I'm porting a piece of existing .NET4.5x code to .NET core 2.2 or .NETStandard2.
Originally I was using:
SystemEvents.TimeChanged += SystemEvents_TimeChanged; //my handler
But in .NETCore or .NETStandard, this is not implemented.
What is the most elegant way to overcome that?