In a part of my system, I have this situation: I will receive a string that represents a date and another string that represents a time. I need to let these informations in DateTime. So, a made it:
string date = "17012012";
string hour = "103445";
date = string.Format("{0}/{1}/{2}", date.Substring(0, 2),
date.Substring(2, 2), date.Substring(4, 4));
hour = string.Format("{0}:{1}:{2}", hour.Substring(0, 2),
hour.Substring(2, 2), hour.Substring(4, 2));
DateTime example = new DateTime();
example = DateTime.Parse(string.Format("{0} {1}", date, hour));
Ok, but is it a good pattern? Are there a "more beautiful" way to do this?
