convert to DateTime

  • Thread starter Thread starter Thomas Lindroos
  • Start date Start date
T

Thomas Lindroos

how to convert this???


string strDate = "19701105";
DateTime myDate = System.Convert.ToDateTime(strDate);

ideas anyone

/thomas lindroos
 
Thomas Lindroos said:
how to convert this???
string strDate = "19701105";
DateTime myDate = System.Convert.ToDateTime(strDate);

Hvae a look at DateTime.Parse and DateTime.ParseExact, where you can
specify your own format.
 
Thomas said:
string strDate = "19701105";
DateTime myDate = System.Convert.ToDateTime(strDate);
If you know the format is set, then just take a substring of the
first 4 characters, turn it into an int, and set DateTime by using the
year, month and day.
 
Back
Top