S
Sudeep
Hi,
I need to parse following string.
string dt = "Thur 11/2/2006 9:05:52 PM";
DateTime.Parse() or TryParse() fail to parse the given string. The day
in the above string "Thur" is causing the problem . If i change this
to "Thu" it gets parsed. Is there any way i can parse this string
without having to manually change "Thur" to "Thu".
Thanks
Sudeep.
I need to parse following string.
string dt = "Thur 11/2/2006 9:05:52 PM";
DateTime.Parse() or TryParse() fail to parse the given string. The day
in the above string "Thur" is causing the problem . If i change this
to "Thu" it gets parsed. Is there any way i can parse this string
without having to manually change "Thur" to "Thu".
Thanks
Sudeep.