I'm working on c# application which should be licenced, for example:
I get datetime from someone, enter it in my app, and my app is working until that time.
But here I am facing issue:
What about this, if I get for example 31.12.2016 as my expiration date, and that's ok, app works fine, and after while someone change datetime on computer to 1.1.2017 even if it is 7.12.2016 and my app will throw a message "Application expired.".. So that is really bad because customers can affect how long application will work.
Right now I am working with DateTime.Now
property which gets a dateTime object that is set to the current date and time on this computer,
and that is not good practice in this case. So guys..
Is there any other data about Date and Time which is unchangeable.
Thanks guys, Cheers