N
news.microsoft.com
dim d as datetime
d = DateTime.Parse(#6/10/2004 11:50:40 PM#) produces exception "String was
not recognized as a valid DateTime."
d = DateTime.Parse("6/10/2004 11:50:40 PM") is OK
d = DateTime.Parse(#6/10/2004 11:50:40 AM#) is OK
can somebody expain what is wrong with the first statement
I am using VS 2003 with framework version 1.1 sp1
Thanx George
d = DateTime.Parse(#6/10/2004 11:50:40 PM#) produces exception "String was
not recognized as a valid DateTime."
d = DateTime.Parse("6/10/2004 11:50:40 PM") is OK
d = DateTime.Parse(#6/10/2004 11:50:40 AM#) is OK
can somebody expain what is wrong with the first statement
I am using VS 2003 with framework version 1.1 sp1
Thanx George