string d = "11022005";
string formatted = DateTime.ParseExact(d,
"ddMMyyyy").ToString("MM/dd/yyyy");
Or if you prefer, the string-only solution:
string d = "11022005";
string formatted = d.Substring(2,2) + '/' + d.Substring(0,2) + '/' +
d.Substring(4,4);
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.