What I mean is... I want to obtain a list of all the available Date and Time
patterns (formats). After doing some more research, I have figured out how
to do it.
Here is the code I wrote:
DateTimeFormatInfo d = new DateTimeFormatInfo();
string[] patterns = d.GetAllDateTimePatterns();
foreach (string s in patterns)
MessageBox.Show(s.ToString());
Thanks for responding though. I appreciate the fast response.
David