I have a Console Application that needs to store LastRunDate
(time when it was ran last time). It is common date for all users on a machine. Each time a user run this app this value should be updated.
Where to store that value?
Using ConfigurationManager.AppSettings
? This is read only.
Using settings file with serialized settings - Application scope? - This is also read-only User scope? - this will be different value for each user.