What is the best way to retrieve the current date? Currently I am storing the date like this:
string date = DateTime.Now.ToString("yyyyMMdd");
Obviously, if the user changes the date on their system, this will also be affected.
I need a way to access an accurate date (preferable in central time) and store it as a string within my application. Any ideas?