R
rodchar
hey all,
i'd like a string of today's date in the following format:
mmddyy
and here's how i did it:
String directoryName = DateTime.Now.Month.ToString() +
DateTime.Now.Day.ToString() + DateTime.Now.Year.ToString().Substring(2);
is there an easier way?
thanks,
rodchar
i'd like a string of today's date in the following format:
mmddyy
and here's how i did it:
String directoryName = DateTime.Now.Month.ToString() +
DateTime.Now.Day.ToString() + DateTime.Now.Year.ToString().Substring(2);
is there an easier way?
thanks,
rodchar