it should be ok.
have you tried to use TryParse in .NET 2.0 and see if it works
DateTime theOutputResult = new DateTime();
if (DateTime.TryParse("string", out theOutputResult))
{
//datetime parsed. value in "theOutputResult"
}
you could also try using ParseExact.
http://msdn2.microsoft.com/en-us/library/w2sa9yss.aspx
|