I have a string which contains date in yyyyMMdd format. I want to convert that date into
system date format, using ConvertTo.DateTime()
method or any other simple method.
I've used:
string time = "19851231";
DateTime theTime= DateTime.ParseExact(time,
Culture, DateTimeStyles.None, out resultDt);
it doesn't return anything, Actually I am troubled with Culture info. I don't know in which Culture it exist.