I have a DateTime class and wish to display it according to some format... in this case, I specifically want to format it as YYYYMMDD format.
What\'s the best C#/.NE
ToString(format)? i.e.
string s = DateTime.Today.ToString("yyyyMMdd");
(note the case)